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

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ============================
   TIPOGRAFIAS DO NOVO DESIGN
============================ */
body {
    font-family: 'Arsenal', sans-serif;
    color: #333;
    background: #fff;
    text-transform: none;
    padding-top: 70px; /* ajusta se necessÃ¡rio */
}

h1, h2 {
    font-family: 'Italiana', serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: none;
}

h3, nav ul li a {
    font-family: 'Aboreto', cursive;
    letter-spacing: 2px;
    text-transform: uppercase;
}

p {
    font-family: 'Arsenal', sans-serif;
    line-height: 1.7;
    font-size: 18px;
}


/* ============================
   HERO (SLIDESHOW)
============================ */
.swiper-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #f5f2ee;
}

.swiper-container.is-loading::before {
    content: none;
}

.swiper-container.is-loading::after {
    content: none;
}

.swiper-slide {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.full-width {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: top center;
    filter: saturate(0.72) sepia(0.16) brightness(0.82) contrast(0.88);
    transform: scale(1.04);
    transition: transform var(--hero-image-motion-duration, 9000ms) ease;
}

.swiper-slide-active .full-width {
    transform: scale(1.1);
}

.hero-slide-brand {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.hero-slide-brand .brand-loader {
    width: min(var(--hero-brand-size, 320px), 46vw);
    aspect-ratio: 320 / 207;
    opacity: var(--hero-brand-opacity, 0.24);
    transform: none;
    animation: none;
}

.swiper-slide-active .hero-slide-brand .brand-loader {
    animation: none;
}

.swiper-slide-active .hero-slide-brand.is-replay .brand-loader {
    animation: none;
}

.hero-slide-caption {
    position: absolute;
    left: 8%;
    top: 34%;
    z-index: 2;
    max-width: min(360px, 70vw);
    color: #fff;
    font-family: 'Arsenal', sans-serif;
    font-size: clamp(20px, 2vw, var(--hero-caption-font-size, 30px));
    line-height: 1.2;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--hero-caption-fade-duration, 1200ms) ease, transform var(--hero-caption-fade-duration, 1200ms) ease;
    transition-delay: var(--hero-caption-delay, 0.9s);
}

.swiper-slide-active .hero-slide-caption {
    opacity: 1;
    transform: translateY(0);
}

.hero-intro-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.06);
    opacity: 1;
    transition: opacity 0.7s ease;
}

.hero-intro-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.hero-intro-overlay__inner {
    display: grid;
    justify-items: center;
    gap: 18px;
    text-align: center;
    padding: 24px;
}

.hero-intro-overlay__logo {
    width: min(var(--hero-brand-size, 320px), 48vw);
    aspect-ratio: 320 / 207;
    opacity: var(--hero-brand-opacity, 0.24);
    transform: none;
    animation: none;
}

.hero-intro-overlay__logo img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    object-fit: contain;
}

.hero-intro-overlay__text {
    max-width: min(560px, 76vw);
    font-family: 'Italiana', serif;
    font-size: clamp(28px, 4vw, var(--hero-intro-font-size, 56px));
    line-height: 1.05;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(10px);
}

.hero-intro-overlay.is-showing-text .hero-intro-overlay__text {
    animation: heroIntroTextFade 1s ease forwards;
}

@keyframes heroIntroLogoFade {
    0% { opacity: 0.12; transform: scale(0.985); }
    22% { opacity: var(--hero-brand-opacity, 0.24); transform: scale(1); }
    74% { opacity: var(--hero-brand-opacity, 0.24); transform: scale(1); }
    100% { opacity: calc(var(--hero-brand-opacity, 0.24) * 0.18); transform: scale(1.01); }
}

@keyframes heroSlideBrandFade {
    0% { opacity: 0.08; transform: scale(0.985); }
    20% { opacity: var(--hero-brand-opacity, 0.24); transform: scale(1); }
    72% { opacity: var(--hero-brand-opacity, 0.24); transform: scale(1); }
    100% { opacity: calc(var(--hero-brand-opacity, 0.24) * 0.18); transform: scale(1.01); }
}

@keyframes heroIntroTextFade {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ============================
   INTRO (FRASE + IMAGEM)
============================ */
.intro {
    padding: 120px 12%;
    text-align: center;
}

.intro h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.intro p {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.intro img {
    width: 100%;
    margin-top: 40px;
    border-radius: 4px;
}

/* ============================
   SOBRE MIM (HOME)
============================ */
.about-home {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 120px 10%;
}

.about-home .text {
    flex: 1;
}

.about-home .text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-home .text p {
    font-size: 18px;
}

.about-home img {
    width: 100%;
    border-radius: 6px;
}

/* ============================
   LOVE STORIES
============================ */
#love-stories {
    padding: 20px 10%;
    text-align: center;
}

#love-stories h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

#love-stories h3 {
    font-size: 22px;
    margin-bottom: 60px;
    letter-spacing: 4px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.78 / 1;
    min-height: 320px;
}

.portfolio-item > a {
    display: block;
    width: 100%;
    height: 100%;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.image-container:hover img {
    transform: scale(1.1);
    opacity: 0.7;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.0);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Aboreto';
    font-size: 26px;
    opacity: 0;
    transition: 0.3s;
}

.image-container:hover .image-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.4);
}

/* ============================
   TRAILER + TESTEMUNHO
============================ */
.trailer {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 120px 10%;
}

.trailer video {
    width: 60%;
    border-radius: 6px;
}

.trailer .testimonial {
    width: 40%;
}

.trailer .testimonial h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.trailer .testimonial p {
    font-size: 18px;
}

/* ============================
   FOOTER
============================ */
.footer {
    padding: 80px 10%;
    text-align: center;
    background: #f6ecef; /* rosa CMYK 2/6/4/0 */
}

.footer h3 {
    font-family: 'Aboreto';
    font-size: 26px;
    margin-bottom: 10px;
}

.footer p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* ============================
   MOBILE
============================ */
@media (max-width: 1024px) {

    nav ul {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .about-home {
        flex-direction: column;
        text-align: center;
    }

    .trailer {
        flex-direction: column;
    }

    .trailer video,
    .trailer .testimonial {
        width: 100%;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item {
        min-height: 280px;
    }

    .intro h2 {
        font-size: 32px;
    }

    .hero-slide-caption {
        max-width: calc(100vw - 64px);
        font-size: clamp(18px, 5vw, calc(var(--hero-caption-font-size, 30px) * 0.84));
    }

    .hero-intro-overlay__logo {
        width: min(var(--hero-brand-size, 320px), 64vw);
    }

    .hero-intro-overlay__text {
        font-size: clamp(24px, 7vw, calc(var(--hero-intro-font-size, 56px) * 0.78));
    }

}

@media (max-width: 768px) {

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        aspect-ratio: 1 / 1.1;
        min-height: 0;
    }

    .intro {
        padding: 80px 5%;
    }

    .about-home {
        padding: 80px 5%;
    }

    #love-stories {
        padding: 80px 5%;
    }

}

.about-hero-img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

.about-box {
    padding: 120px 12%;
    text-align: center;
}

.about-grey-light {
    background: #f7f7f7;
}

.about-rose {
    background: #f6ecef; /* rosa CMYK 2/6/4/0 */
}

.about-grey {
    background: #e6e6e6;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-flex.reverse {
    flex-direction: row-reverse;
}

.about-photo img {
    width: 100%;
    max-width: 520px;
    max-height: 620px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text h3 {
    font-family: 'Aboreto';
    font-size: 28px;
    margin-bottom: 20px;
}

.about-video {
    padding: 0 0 72px 0;
    text-align: center;
}

.about-video video {
    width: 100%;
    height: min(86vh, 760px);
    display: block;
    margin-bottom: 40px;
    border-radius: 0;
    object-fit: cover;
}

.about-follow {
    max-width: 820px;
    margin: 52px auto 0 auto;
    padding: 0 22px;
}

.about-follow h3 {
    font-size: 28px;
    margin-bottom: 16px;
    white-space: pre-line;
}

.about-follow p {
    white-space: pre-line;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    text-decoration: none;
    color: #000;
    font-family: 'Aboreto';
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn:hover {
    background: #000;
    color: #fff;
}

/* MOBILE */
@media (max-width: 1024px) {
    .about-flex,
    .about-flex.reverse {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }
}

.about-box-top {
    padding: 120px 25%;
    text-align: center;
}

.signature-wrapper {
    margin-top: 40px;
    text-align: end;
}

.about-signature {
    font-family: 'Allura', cursive;
    font-size: 40px;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
}


.about-text {
    flex: 1;
    text-align: left;
}

.signature-wrapper {
    text-align: end;
}

/* ============================
   INSTAGRAM BLOCK (ABOUT)
============================ */

.about-instagram-block {
    padding: 20px 10%;
    text-align: center;
}

.insta-title {
    font-family: 'Italiana', serif;
    font-size: 60px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 1.02;
    overflow-wrap: anywhere;
}

.insta-title a.btn {
    display: inline;
    margin-top: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    white-space: normal;
    word-break: break-word;
}

.insta-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: min(100%, 1220px);
    margin: 0 auto 14px auto;
}

.insta-strip img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* GRID MENU + LOGO + SOCIAL */
.insta-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 60px;
    align-items: start;
}

.insta-menu h3,
.insta-social h3 {
    font-family: 'Aboreto', cursive;
    font-size: 22px;
    margin-bottom: 20px;
}

.insta-menu ul,
.insta-social ul {
    list-style: none;
    padding: 0;
}

.insta-menu li,
.insta-social li {
    margin-bottom: 12px;
}

.insta-menu a,
.insta-social a {
    text-decoration: none;
    color: #000;
    font-family: 'Arsenal', sans-serif;
    font-size: 16px;
    transition: 0.3s;
}

.insta-menu a:hover,
.insta-social a:hover {
    opacity: 0.6;
}

/* LOGOTIPO AO CENTRO */
.insta-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-placeholder {
    width: 160px;
    height: 160px;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arsenal';
    font-size: 18px;
    text-transform: uppercase;
}

/* COPYRIGHT */
.copyright {
    margin-top: -20px;
    font-family: 'Arsenal';
    font-size: 14px;
    letter-spacing: 2px;
}

/* MOBILE */
@media (max-width: 1024px) {

    .insta-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .insta-strip img {
        width: 100%;
        height: auto;
    }

    .insta-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .logo-placeholder {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .insta-strip {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .insta-strip img {
        width: 100%;
        height: auto;
    }
}


/* ============================
   INSTAGRAM FOOTER BLOCK
============================ */

.about-instagram-block {
    text-align: center;
}

/* GRID PRINCIPAL */
.insta-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

/* LINHAS PONTILHADAS ENTRE AS COLUNAS */
.insta-footer-grid::before,
.insta-footer-grid::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    border-left: 3px dotted #cdc1ae;
}

.insta-footer-grid::before {
    left: 33.33%;
}

.insta-footer-grid::after {
    right: 33.33%;
}

/* MENU E SOCIAL */
.insta-menu h3,
.insta-social h3 {
    font-family: 'Aboreto', cursive;
    font-size: 22px;
    margin-bottom: 20px;
}
.insta-menu ul,
.insta-social ul {
    list-style: none;
    padding: 0;
}

.insta-menu li,
.insta-social li {
    margin-bottom: 12px;
}

.insta-menu a,
.insta-social a {
    text-decoration: none;
    color: #000;
    font-family: 'Arsenal', sans-serif;
    font-size: 16px;
    transition: 0.3s;
}

.insta-menu a:hover,
.insta-social a:hover {
    opacity: 0.6;
}

/* LOGOTIPO AO CENTRO */
.insta-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-placeholder {
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
}

.logo-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* COPYRIGHT */
copyright {
    margin-top: 60px;
    font-family: 'Arsenal';
    font-size: 14px;
    letter-spacing: 2px;
}

/* ============================
   MOBILE
============================ */
@media (max-width: 1024px) {

    .insta-footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    /* Remove linhas pontilhadas no mobile */
    .insta-footer-grid::before,
    .insta-footer-grid::after {
        display: none;
    }

    .logo-placeholder {
        margin: 0 auto;
    }
}


@media (min-width: 1024px) {
    .insta-social {
        text-align: left;
    }
    .insta-menu {
        text-align: end;
    }
}

/* ============================
   CONTACT PAGE
============================ */

.contact-page {
    padding: 120px 10%;
}

.contact-lang {
    font-family: 'Aboreto';
    font-size: 16px;
    letter-spacing: 2px;
    text-align: right;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

/* INTRO */
.contact-intro {
    font-family: 'Arsenal';
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* FORM */
.contact-form label {
    display: block;
    font-family: 'Aboreto';
    font-size: 14px;
    margin-top: 25px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #000;
    font-family: 'Arsenal';
    font-size: 16px;
    background: #fff;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

.form-message {
    margin: 0 0 28px 0;
    padding: 14px 18px;
    border: 1px solid #000;
    font-family: 'Arsenal', sans-serif;
    font-size: 17px;
    line-height: 1.5;
}

.form-message.success {
    border-color: #6f8a65;
    background: #f4f8f1;
    color: #2f4f2f;
}

.form-message.error {
    border-color: #9b4b4b;
    background: #fbf1f1;
    color: #6f2525;
}

.contact-btn {
    margin-top: 30px;
    padding: 12px 40px;
    border: 1px solid #000;
    background: #fff;
    font-family: 'Aboreto';
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #000;
    color: #fff;
}

/* CONTACT INFO */
.contact-info h3 {
    font-family: 'Italiana';
    font-size: 40px;
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h4 {
    font-family: 'Aboreto';
    font-size: 16px;
    margin-bottom: 5px;
}

.info-block p {
    font-family: 'Arsenal';
    font-size: 18px;
}

/* MOBILE */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-lang {
        text-align: center;
    }
}

/* ============================
   HOME â€” SECÃ‡ÃƒO SERVIÃ‡O
============================ */

.home-servico {
    display: grid;
    grid-template-columns: 55% 45%;
    padding: 160px 10%;
    gap: 80px;
    align-items: center;
}

/* IMAGEM */
.servico-imagem img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

/* TEXTO */
.servico-texto h2 {
    font-family: 'Italiana', serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 40px;
    text-transform: none;
}

.servico-texto p {
    font-family: 'Arsenal', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 520px;
    white-space: pre-line;
}

/* BOTÃƒO */
.servico-btn {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #000;
    font-family: 'Aboreto', cursive;
    font-size: 16px;
    letter-spacing: 2px;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
    white-space: pre-line;
}

.servico-btn:hover {
    background: #000;
    color: #fff;
}

/* MOBILE */
@media (max-width: 1024px) {
    .home-servico {
        grid-template-columns: 1fr;
        padding: 100px 8%;
        text-align: center;
    }

    .servico-texto p {
        margin: 0 auto 40px auto;
    }
}

/* ============================
   TRAILER FULL â€” TEXTO SOBRE O VÃDEO
============================ */

.trailer-full {
    position: relative;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    height: 90vh; /* ajusta se quiseres mais alto */
    overflow: hidden;
}

/* VÃDEO A OCUPAR A SECÃ‡ÃƒO TODA */
.trailer-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.about-video {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.about-follow {
    padding-left: 22px;
    padding-right: 22px;
}

/* OVERLAY PARA POSICIONAR O TEXTO */
.trailer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end; /* texto Ã  direita */
    align-items: center;       /* centrado verticalmente */
    padding-right: 8%;
}

/* CAIXA DO TESTEMUNHO */
.testimonial-box {
    max-width: 420px;
    text-align: right;
    color: #fff;
}

/* TÃTULO */
.testimonial-box h3 {
    font-family: 'Italiana', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

/* TEXTO */
.testimonial-box p {
    font-family: 'Arsenal', sans-serif;
    font-size: 20px;
    line-height: 1.7;
}

/* MOBILE */
@media (max-width: 900px) {
    .trailer-overlay {
        justify-content: center;
        padding-right: 0;
    }

    .testimonial-box {
        text-align: center;
        padding: 0 20px;
    }
}

/* ============================
   TESTIMONIALS â€” CAIXA CINZENTA + BRANCA
============================ */

.testimonials-caixas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 140px 10%;
    gap: 0;
    align-items: start;
}

/* CAIXAS */
.test-box {
    padding: 0 60px 80px 60px;
    min-height: 100%;
}

.test-box.grey {
    background: #f2f2f2;
    padding-top: 60px;
}

.test-box.white {
    background: #ffffff;
}


/* CONTEÃšDO INTERNO */
.test-box-inner {
    padding: 0;
}

.test-box-inner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 25px;
    display: block;
}


.test-box-inner h3 {
    font-family: 'Italiana', serif;
    font-size: 28px;
    margin-bottom: 15px;
}


.test-box-inner p {
    font-family: 'Arsenal', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 16px;
    white-space: pre-line;
}

.test-box-inner p:last-child {
    margin-bottom: 0;
}


.test-box.no-image {
    display: flex;
    align-items: center;
}


.test-box.no-image .test-box-inner {
    max-width: 680px;
}


/* mantÃ©m efeito alternado mas sem desalinhamento */
.test-box.offset {
    margin-top: 0;
}

/* MOBILE */
@media (max-width: 900px) {
    .testimonials-caixas {
        grid-template-columns: 1fr;
    }

    .test-box.offset {
        margin-top: 0;
    }

    .testimonials-caixas .test-box:nth-child(odd) {
        background: #ffffff;
    }

    .testimonials-caixas .test-box:nth-child(even) {
        background: #f2f2f2;
    }
}

/* ============================
   DESENVOLVIMENTOS PDF
============================ */

.pdf-intro-copy {
    max-width: 900px;
    margin: 0 auto;
}

.pdf-intro-copy p {
    margin: 0 auto 18px auto;
    font-size: 20px;
    white-space: pre-line;
}

.wedding-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 0;
}

.home-love-stories {
    width: min(100% - 64px, 1420px);
    max-width: 1420px;
    margin: 0 auto;
    padding: 95px 0 105px 0 !important;
    text-align: left !important;
}

.love-stories-heading {
    display: block;
    margin-bottom: 54px;
    text-align: center;
}

.home-love-stories .love-stories-heading h2 {
    font-family: 'Italiana', serif;
    font-size: clamp(54px, 5.4vw, 92px);
    line-height: 1;
    letter-spacing: 0;
    margin: 0 0 24px 0;
    text-transform: lowercase;
}

.home-love-stories .love-stories-heading p {
    font-family: 'Arsenal', sans-serif;
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: 0;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.wedding-type-card {
    position: relative;
    min-height: 300px;
    aspect-ratio: 1.05 / 1;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.wedding-type-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wedding-type-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.38);
    top: 44%;
    bottom: 40%;
}

.wedding-type-card span {
    position: relative;
    z-index: 1;
    font-family: 'Aboreto', cursive;
    font-size: 12px;
    letter-spacing: 1.3px;
    color: #333;
    text-align: center;
    text-transform: uppercase;
}

.wedding-type-card:hover img {
    transform: scale(1.06);
}

.testimonials-heading {
    padding: 110px 10% 20px 10%;
    text-align: center;
}

.testimonials-heading h1 {
    font-family: 'Italiana', serif;
    font-size: 54px;
    font-weight: 400;
    text-transform: none;
    margin-bottom: 18px;
}

.testimonials-heading p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 20px;
    white-space: pre-line;
}

.test-box.offset {
    margin-top: 0;
}

.contact-lang-switch {
    font-family: 'Aboreto', cursive;
    font-size: 15px;
    letter-spacing: 2px;
    text-align: right;
    margin-bottom: 30px;
}

.gallery-credits {
    max-width: 820px;
    margin: 12px auto 0 auto;
    padding: 0 18px;
    text-align: center;
    line-height: 1.75;
}

.gallery-credit-item {
    font-family: 'Aboreto', cursive;
    font-size: 13px !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase !important;
    white-space: nowrap;
}

.gallery-credit-separator {
    font-family: 'Aboreto', cursive;
    font-size: 13px;
    letter-spacing: 1.8px;
    margin: 0 7px;
}

.gallery-credit-item strong {
    font-family: 'Aboreto', cursive;
    text-transform: none;
    letter-spacing: 1.4px !important;
    font-weight: 400;
}

.gallery-back-link {
    margin: 22px auto 12px auto;
    text-align: center;
}

.gallery-back-link a {
    display: inline-block;
    padding: 12px 34px;
    border: 1px solid #000;
    color: #000;
    font-family: 'Aboreto', cursive;
    font-size: 13px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.gallery-back-link a:hover {
    background: #000;
    color: #fff;
}

.gallery-back-link + div {
    margin-bottom: 22px !important;
}

.gallery-back-link + div .line {
    width: 165px;
    border-bottom-color: #cdc1ae;
    border-bottom-style: dotted;
    border-bottom-width: 3px;
}

@media (max-width: 1024px) {
    .wedding-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-love-stories {
        width: min(100% - 48px, 920px);
        max-width: 920px;
    }

    .test-box.offset {
        margin-top: 0;
    }

    .about-box,
    .about-box-top,
    .about-video,
    .testimonials-caixas,
    .home-servico {
        padding-left: 7%;
        padding-right: 7%;
    }

    .about-flex,
    .about-flex.reverse {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .about-photo img,
    .test-box-inner img {
        max-height: 560px;
        object-fit: cover;
    }
}

@media (max-width: 700px) {
    .wedding-types-grid {
        grid-template-columns: 1fr;
    }

    .wedding-type-card {
        min-height: 240px;
        aspect-ratio: 1.4 / 1;
    }

    .home-love-stories {
        width: calc(100% - 32px);
        padding-top: 65px !important;
        padding-bottom: 75px !important;
    }

    .home-love-stories .love-stories-heading h2 {
        font-size: 48px;
        margin-bottom: 18px;
    }

    .home-love-stories .love-stories-heading p {
        font-size: 18px;
    }

    .testimonials-heading h1 {
        font-size: 40px;
    }

    .contact-lang-switch {
        text-align: center;
    }

    .logo-placeholder img {
        width: 150px !important;
        margin-top: 20px;
    }

    .gallery-credit-item {
        display: inline;
        font-size: 11px !important;
        letter-spacing: 1.2px !important;
        white-space: normal;
    }

    .gallery-credit-separator {
        font-size: 11px;
        letter-spacing: 1.2px;
        margin: 0 5px;
    }

    .about-box,
    .about-box-top,
    .about-video,
    .testimonials-caixas,
    .home-servico,
    .intro {
        padding-left: 22px;
        padding-right: 22px;
    }

    .about-box-top h3,
    .about-box h3 {
        font-size: 21px;
        line-height: 1.55;
    }

    .about-text p,
    .pdf-intro-copy p,
    .servico-texto p,
    .test-box-inner p {
        font-size: 17px;
        line-height: 1.75;
    }

    .testimonials-caixas {
        gap: 0;
    }

    .test-box {
        padding: 36px 22px 50px 22px;
    }

    .test-box-inner img {
        height: auto;
        max-height: none;
    }
}

.video-caption-stage {
    position: relative;
    overflow: hidden;
    background: #f5f2ee;
}

[data-media-loader] {
    position: relative;
}

.section-media-loader,
.video-loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(245, 242, 238, 0.82);
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.section-media-loader.is-ready,
.video-caption-stage.is-ready .video-loader {
    opacity: 0;
    visibility: hidden;
}

.section-media-loader .brand-loader,
.video-loader .brand-loader {
    width: min(200px, 34vw);
    aspect-ratio: 320 / 207;
    background-image: var(--site-loader-logo);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    animation: brandLoaderPulse 1.5s ease-in-out infinite;
}

.section-loader-progress {
    width: min(180px, 30vw);
    height: 5px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.12);
}

.section-loader-progress__fill {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.72);
    transition: width 0.22s ease;
}

.about-video-stage {
    width: 100%;
}

.video-caption-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 8% 108px 8%;
    background: rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.video-sound-hint {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Aboreto', cursive;
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.28s ease, transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.video-sound-hint:hover {
    background: rgba(0, 0, 0, 0.56);
}

.video-sound-hint__icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
}

.video-sound-hint__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.video-caption-stage.video-has-sound .video-sound-hint {
    opacity: 0.22;
}

.video-caption-stage.video-has-sound .video-sound-hint:hover {
    opacity: 0.62;
}

.video-caption-box {
    max-width: 520px;
    text-align: right;
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.18);
    transform: none;
}

.video-caption-mobile {
    display: none;
}

.video-caption-box h3 {
    font-family: 'Italiana', serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.video-caption-title-progress {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.28);
    --title-load-progress: 0%;
}

.video-caption-title-progress::after {
    content: attr(data-progress-text);
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--title-load-progress);
    overflow: hidden;
    color: rgba(255, 255, 255, 0.94);
    white-space: nowrap;
    transition: width 0.24s ease, color 0.24s ease;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.18);
}

@keyframes brandLoaderPulse {
    0%,
    100% {
        opacity: 0.28;
        transform: scale(0.985);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes sectionSpinner {
    to {
        transform: rotate(360deg);
    }
}

.video-caption-box p {
    font-family: 'Arsenal', sans-serif;
    font-size: 20px;
    line-height: 1.7;
    white-space: pre-line;
}

@media (max-width: 900px) {
    .video-caption-overlay {
        justify-content: center;
        align-items: center;
        padding: 0 24px;
    }

    .video-sound-hint {
        left: 50%;
        bottom: 18px;
        transform: translateX(-50%);
        padding: 7px 12px;
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .video-caption-box {
        text-align: center;
        padding-top: 0;
        padding: 0 20px;
        transform: none;
    }

    .video-caption-desktop {
        display: none;
    }

    .video-caption-mobile {
        display: block;
    }

    .video-caption-box h3 {
        font-size: 30px;
        letter-spacing: 3px;
    }

    .video-caption-box p {
        font-size: 17px;
        line-height: 1.55;
    }
}

/* ============================
   HERO ELEGANT OVERRIDES
============================ */
.hero.swiper-container {
    height: calc(100vh - 70px);
    min-height: 720px;
}

.hero .swiper-slide,
.hero .full-width {
    height: 100%;
}

.hero .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(54, 41, 33, 0.26) 0%, rgba(35, 24, 18, 0.38) 100%),
        radial-gradient(circle at center, rgba(247, 235, 226, 0.12) 0%, rgba(30, 20, 14, 0.26) 100%),
        linear-gradient(180deg, rgba(210, 184, 165, 0.12) 0%, rgba(126, 92, 74, 0.12) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 10vh 24px 104px;
    text-align: center;
    pointer-events: none;
}

.hero-slide-brand {
    position: static;
    inset: auto;
    display: block;
}

.hero-slide-brand .brand-loader {
    width: min(var(--hero-brand-size, 320px), 36vw);
    max-width: 420px;
    opacity: var(--hero-brand-opacity, 0.24);
    transform: none;
    animation: none !important;
}

.hero-slide-divider {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.88);
}

.hero-slide-divider::before,
.hero-slide-divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

.hero-slide-divider span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    position: relative;
}

.hero-slide-divider span::before {
    content: "â¦";
    font-size: 16px;
    line-height: 1;
}

.hero-slide-caption {
    position: static;
    left: auto;
    top: auto;
    max-width: min(520px, 84vw);
    font-family: 'Italiana', serif;
    font-style: italic;
    font-size: clamp(28px, 2.6vw, var(--hero-caption-font-size, 30px));
    line-height: 1.22;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
    transition-delay: var(--hero-caption-delay, 0.9s);
}

.hero-slide-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 272px;
    padding: 15px 28px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: 'Aboreto', cursive;
    font-size: 13px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    text-decoration: none;
    pointer-events: auto;
    transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.hero-slide-cta:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #fff;
    transform: translateY(-1px);
}

.hero-intro-overlay {
    z-index: 6;
    background: rgba(23, 17, 13, 0.18);
}

.hero-intro-overlay__inner {
    gap: 22px;
}

.hero-intro-overlay__logo {
    width: min(var(--hero-brand-size, 320px), 36vw);
    max-width: 420px;
    opacity: var(--hero-brand-opacity, 0.24);
    transform: none;
    animation: none !important;
}

.hero-intro-overlay__text {
    max-width: min(560px, 84vw);
    font-size: clamp(34px, 4.6vw, var(--hero-intro-font-size, 56px));
    color: rgba(255, 255, 255, 0.97);
}

.hero .swiper-pagination {
    bottom: 28px !important;
}

.hero .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.28);
    opacity: 1;
}

.hero .swiper-pagination-bullet-active {
    background: #fff;
}

.hero-swiper-button {
    width: 38px !important;
    height: 38px !important;
    margin-top: -19px !important;
    color: rgba(255, 255, 255, 0.72) !important;
    opacity: 0.78;
}

.hero-swiper-button::after {
    font-size: 15px !important;
    font-weight: 300;
}

.hero .swiper-button-prev {
    left: 18px;
}

.hero .swiper-button-next {
    right: 18px;
}

@media (max-width: 1024px) {
    .hero.swiper-container {
        min-height: 640px;
    }

    .hero-slide-content {
        padding: 15vh 28px 90px;
    }

    .hero-slide-brand .brand-loader,
    .hero-intro-overlay__logo {
        width: min(var(--hero-brand-size, 320px), 54vw);
    }
}

@media (max-width: 768px) {
    .hero.swiper-container {
        height: calc(100vh - 70px);
        min-height: 560px;
    }

    .hero-slide-content {
        gap: 18px;
        padding: 13vh 22px 84px;
    }

    .hero-slide-brand .brand-loader,
    .hero-intro-overlay__logo {
        width: min(var(--hero-brand-size, 320px), 70vw);
    }

    .hero-slide-caption {
        max-width: 90vw;
        font-size: clamp(24px, 7vw, calc(var(--hero-caption-font-size, 30px) * 0.94));
    }

    .hero-slide-cta {
        min-width: 0;
        width: min(100%, 290px);
        padding: 14px 18px;
        font-size: 11px;
        letter-spacing: 2.6px;
    }

    .hero-swiper-button {
        display: none !important;
    }
}

/* ============================
   FOOTER + INSTAGRAM SHOWCASE
============================ */
.site-instagram-journey,
.site-footer-elegant,
.galleries-showcase {
    background:
        radial-gradient(circle at top left, rgba(218, 197, 174, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(218, 197, 174, 0.16), transparent 26%),
        linear-gradient(180deg, #fffdf9 0%, #fff 100%);
}

.site-instagram-journey {
    padding: 92px 32px 48px;
    text-align: center;
}

.site-section-eyebrow {
    margin: 0 0 18px 0;
    font-family: 'Aboreto', cursive;
    font-size: 16px;
    letter-spacing: 5px;
    color: #b89a7a;
    text-transform: uppercase;
}

.site-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 24px;
    width: 138px;
    color: #c6aa8d;
}

.site-section-divider::before,
.site-section-divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: currentColor;
}

.site-section-divider span::before {
    content: "";
    display: block;
    width: 28px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("../imagens/icon_flower_span.png?v=2026071444");
}

.site-section-subtitle {
    max-width: 760px;
    margin: 0 auto 34px;
    font-family: 'Arsenal', sans-serif;
    font-size: 22px;
    line-height: 1.55;
    color: #443933;
    white-space: pre-line;
}

.site-instagram-journey .insta-title {
    margin-bottom: 18px;
    font-size: clamp(62px, 8vw, 104px);
    line-height: 0.95;
    color: #1f1a17;
}

.site-instagram-journey .insta-title a.btn {
    padding: 0;
}

.insta-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: min(100%, 1380px);
    margin: 0 auto 28px;
}

.insta-strip-card {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(93, 73, 52, 0.12);
}

.insta-strip img {
    aspect-ratio: 1 / 1;
    border-radius: 0;
}

.site-instagram-handle,
.site-instagram-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #201a17;
}

.site-instagram-linkline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 6px;
}

.site-instagram-handle {
    margin: 0;
    font-family: 'Aboreto', cursive;
    font-size: 17px;
    letter-spacing: 3px;
    line-height: 1;
}

.site-instagram-icon {
    font-size: 24px;
    line-height: 1;
}

.site-footer-elegant {
    padding: 54px 32px 46px;
    position: relative;
    overflow: hidden;
}

.site-footer-elegant::before,
.site-footer-elegant::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 220px;
    height: 220px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    opacity: 0.48;
    pointer-events: none;
    background-image: url("../imagens/flower_footer.png?v=2026071444");
}

.site-footer-elegant::before {
    left: -18px;
}

.site-footer-elegant::after {
    right: -18px;
    transform: scaleX(-1);
}

.site-footer-elegant__grid {
    width: min(100%, 1280px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 42px;
    align-items: center;
}

.site-footer-elegant__col {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-footer-elegant__col + .site-footer-elegant__col {
    border-left: 1px solid rgba(199, 174, 147, 0.7);
}

.site-footer-elegant h3 {
    margin-bottom: 12px;
    font-family: 'Aboreto', cursive;
    font-size: 18px;
    letter-spacing: 4px;
    color: #1f1a17;
}

.site-footer-mini-divider {
    width: 28px;
    height: 1px;
    background: #c6aa8d;
    margin: 0 auto 22px;
}

.insta-menu,
.insta-social {
    text-align: center;
}

.insta-menu ul,
.insta-social ul {
    display: grid;
    gap: 12px;
}

.insta-menu a,
.insta-social a {
    font-family: 'Arsenal', sans-serif;
    font-size: 19px;
    color: #322a24;
}

.site-footer-elegant__brand {
    text-align: center;
}

.logo-placeholder {
    width: min(100%, 260px);
    height: auto;
    margin: 0 auto 26px;
}

.logo-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.copyright {
    margin-top: 0;
    font-family: 'Aboreto', cursive;
    font-size: 14px;
    letter-spacing: 4px;
    color: #806a56;
}

/* ============================
   LOVE STORIES GALLERIES PAGE
============================ */
.galleries-showcase {
    padding: 92px 32px 78px !important;
    background: #fff !important;
    background-image: none !important;
    text-align: center;
}

.galleries-showcase,
.galleries-showcase__heading,
.galleries-showcase__grid,
.galleries-showcase__actions {
    background-color: #fff !important;
}

.galleries-showcase--home {
    width: 100%;
}

.galleries-showcase__heading {
    margin: 0 auto 42px;
}

.galleries-showcase__heading h2 {
    font-family: 'Italiana', serif;
    font-size: clamp(72px, 8vw, 124px);
    line-height: 0.9;
    margin: 0 0 18px;
    text-transform: none;
}

.galleries-showcase__subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-family: 'Arsenal', sans-serif;
    font-size: 22px;
    line-height: 1.55;
    white-space: pre-line;
}

.galleries-showcase__grid {
    width: min(calc(100% - 120px), 1600px);
    margin: 0 auto;
    padding: 0;
    gap: 24px;
    row-gap: 24px;
    column-gap: 24px;
    position: relative;
    align-items: start;
}

.galleries-showcase .portfolio-item {
    aspect-ratio: 0.86 / 1;
    border-radius: 8px;
    background: #f7f4f0;
}

.galleries-showcase .image-container img {
    transform: none;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.galleries-showcase .image-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 34%, rgba(255,255,255,0.84) 34%, rgba(255,255,255,0.84) 66%, rgba(255,255,255,0) 66%);
}

.galleries-showcase .image-overlay__band {
    width: 100%;
    display: grid;
    gap: 20px;
    align-items: center;
    justify-items: center;
    padding: 32px 18px;
    color: #302620;
}

.galleries-showcase .image-overlay__band strong {
    font-family: 'Aboreto', cursive;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.galleries-showcase .image-overlay__band span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Aboreto', cursive;
    font-size: 14px;
    letter-spacing: 3.4px;
    text-transform: uppercase;
}

.galleries-showcase .image-container:hover .image-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 34%, rgba(255,255,255,0.92) 34%, rgba(255,255,255,0.92) 66%, rgba(255,255,255,0) 66%);
}

.galleries-showcase .image-container:hover img {
    filter: saturate(0.72) sepia(0.16) brightness(0.82) contrast(0.88);
    transform: scale(1.02);
}

/* ============================
   ABOUT PAGE LAYOUT
============================ */
.about-hero {
    background: #fff;
}

.about-hero-img {
    height: min(48vw, 640px);
    min-height: 340px;
    display: block;
}

.about-intro-band,
.about-story-block,
.about-cta-band {
    position: relative;
    overflow: hidden;
}

.about-intro-band,
.about-story-block--rose,
.about-cta-band {
    background:
        radial-gradient(circle at top left, rgba(224, 206, 190, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(224, 206, 190, 0.16), transparent 26%),
        linear-gradient(180deg, #fffdf9 0%, #fff 100%);
}

.about-cta-band {
    background: #f6ecef;
}

.about-story-block--light {
    background: #fff;
}

.about-intro-band::before,
.about-intro-band::after,
.about-story-block--rose::after,
.about-story-block--light::after,
.about-cta-band::before {
    content: "";
    position: absolute;
    background-image: url("../imagens/flower_footer.png?v=2026071444");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.24;
    pointer-events: none;
}

.about-intro-band::before {
    width: 180px;
    height: 220px;
    left: 28px;
    bottom: 12px;
}

.about-intro-band::after {
    width: 180px;
    height: 220px;
    right: 28px;
    bottom: 12px;
    transform: scaleX(-1);
}

.about-story-block--rose::after,
.about-story-block--light::after {
    width: 160px;
    height: 220px;
    right: 18px;
    bottom: 18px;
    transform: scaleX(-1);
}

.about-cta-band::before {
    width: 170px;
    height: 240px;
    left: 10px;
    bottom: -6px;
}

.about-intro-band__inner,
.about-story-block__inner,
.about-cta-band__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 88px, 1280px);
    margin: 0 auto;
}

.about-intro-band__inner {
    padding: 58px 0 70px;
    text-align: center;
}

.about-intro-band__eyebrow {
    margin: 0 auto;
    max-width: 760px;
    font-family: 'Arsenal', sans-serif;
    font-size: clamp(15px, 1vw, 19px);
    line-height: 1.55;
    color: #554942;
    white-space: pre-line;
}

.about-intro-band h2 {
    margin: 0 auto;
    max-width: 820px;
    font-family: 'Italiana', serif;
    font-size: clamp(30px, 2.5vw, 56px);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0;
    color: #2e2621;
}

.about-cta-band h3 {
    margin: 0 auto;
    max-width: 980px;
    font-family: 'Aboreto', cursive;
    font-size: clamp(22px, 1.8vw, 34px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 2px;
    color: #2e2621;
    text-transform: uppercase;
}

.about-divider {
    margin-top: 14px;
    margin-bottom: 18px;
}

.about-divider--compact {
    margin: 22px 0 18px;
    justify-content: flex-start;
}

.about-story-block__inner {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
    gap: 64px;
    align-items: center;
    padding: 64px 0;
}

.about-story-block--reverse .about-story-block__inner {
    grid-template-columns: minmax(620px, 1.18fr) minmax(280px, 0.82fr);
    gap: 78px;
}

.about-story-block__media img {
    width: 100%;
    max-width: none;
    max-height: none;
    border-radius: 4px;
    aspect-ratio: 0.82 / 1;
    object-fit: cover;
    box-shadow: none;
}

.about-story-block__content {
    text-align: left;
    color: #3f342d;
}

.about-story-block__copy p {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    white-space: pre-line;
    color: #4a3d36;
}

.about-story-block__lead p {
    margin: 0;
    font-family: 'Italiana', serif;
    font-size: clamp(36px, 3vw, 62px);
    line-height: 1.06;
    color: #2f2621;
}

.about-story-block__lead--wide {
    max-width: 760px;
    margin-bottom: 26px;
}

.about-story-block__lead--stacked {
    max-width: 430px;
}

.about-story-block__content--feature {
    display: block;
}

@media (min-width: 1180px) {
    .about-story-block--rose:not(.about-story-block--philosophy) .about-story-block__inner {
        grid-template-columns: minmax(420px, 0.94fr) minmax(560px, 1.06fr);
        gap: 72px;
    }

    .about-story-block__content--feature,
    .about-story-block__content--feature .about-story-block__lead--wide,
    .about-story-block__content--feature .about-story-block__copy--columns {
        max-width: 920px;
    }

    .about-story-block__content--feature .about-story-block__lead p {
        font-size: clamp(42px, 2.45vw, 52px);
        line-height: 1.05;
        text-wrap: auto;
    }

    .about-story-block__content--feature .about-feature-title-main {
        display: block;
        white-space: nowrap;
    }

    .about-story-block__content--feature .about-mobile-title-break {
        display: block;
    }

    .about-story-block__content--feature .about-story-block__copy--columns {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
        column-gap: 56px;
        align-items: stretch;
    }

    .about-story-block__content--feature .about-story-block__copy-column:nth-child(2) {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

.about-story-block__content--split {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(180px, 0.58fr);
    gap: 26px 54px;
    align-items: start;
}

.about-story-block__copy--columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
    max-width: 760px;
}

.about-story-block__content--feature .about-story-block__copy--columns {
    align-items: stretch;
}

.about-story-block__copy-column {
    display: grid;
    gap: 14px;
    align-content: start;
}

.about-story-block__content--feature .about-story-block__copy-column {
    align-content: start;
}

.about-story-block__copy--narrow {
    max-width: 300px;
}

.about-story-block__content--statement-left {
    max-width: 760px;
    padding-top: 6px;
}

.about-story-block__content--statement-right {
    max-width: 780px;
    padding-top: 8px;
}

.about-story-block__content--statement-left .about-story-block__lead--stacked {
    max-width: 340px;
}

.about-story-block__content--statement-right .about-story-block__lead--stacked {
    max-width: 310px;
}

.about-story-block__content--statement-left .about-story-block__lead p,
.about-story-block__content--statement-right .about-story-block__lead p {
    font-size: clamp(38px, 3vw, 60px);
    line-height: 0.98;
}

.about-story-block__content--statement-left .about-story-block__copy,
.about-story-block__content--statement-right .about-story-block__copy {
    align-self: end;
    padding-bottom: 18px;
}

.about-story-block--reverse .about-story-block__copy p,
.about-story-block__content--statement-right .about-story-block__copy p {
    font-size: 16px;
    line-height: 1.65;
}

.about-story-block--reverse .about-story-block__media img {
    max-width: 360px;
    margin-left: auto;
}

.about-story-block__content--statement-right {
    grid-template-columns: minmax(320px, 0.95fr) minmax(200px, 0.62fr);
}

.about-story-block__content--statement-right .about-story-block__copy {
    padding-top: 150px;
    padding-bottom: 0;
}

.about-story-block__content--statement-right .about-story-block__lead {
    align-self: start;
}

.about-story-block__content--signature .about-story-block__copy p {
    max-width: 320px;
}

.about-story-block--team .about-story-block__inner {
    grid-template-columns: minmax(560px, 1.12fr) minmax(280px, 0.74fr);
    gap: 72px;
    align-items: center;
}

.about-story-block--team .about-story-block__content--statement-left {
    max-width: 720px;
    grid-template-columns: minmax(360px, 1fr) minmax(190px, 0.56fr);
    gap: 18px 38px;
}

.about-story-block--team .about-story-block__lead--stacked {
    max-width: 390px;
}

.about-story-block--team .about-story-block__lead p {
    font-size: clamp(42px, 3.15vw, 64px);
    line-height: 0.96;
    letter-spacing: 0;
}

.about-story-block--team .about-story-block__copy {
    align-self: end;
    max-width: 220px;
    padding-bottom: 0;
}

.about-story-block--team .about-story-block__copy p {
    font-size: 18px;
    line-height: 1.55;
    text-align: right;
}

.about-story-block--team .about-story-block__media img {
    max-width: 360px;
    margin-left: auto;
}

.about-story-block--philosophy .about-story-block__inner {
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.about-story-block--philosophy .about-story-block__content--statement-right {
    max-width: 760px;
    grid-template-columns: minmax(260px, 320px) 220px;
    gap: 18px 56px;
    align-items: end;
}

.about-story-block--philosophy .about-story-block__lead--stacked {
    max-width: 300px;
}

.about-story-block--philosophy .about-story-block__lead p {
    font-size: clamp(36px, 3.3vw, 56px);
    line-height: 1.01;
    text-align: left;
}

.about-story-block__lead.about-story-block__lead--stacked p {
    text-align: right;
    font-size: clamp(32px, 2.45vw, 50px);
}

.about-story-block--philosophy .about-story-block__lead.about-story-block__lead--stacked p {
    text-align: left;
    font-size: clamp(36px, 3.3vw, 56px);
}

.about-story-block--team .about-story-block__lead.about-story-block__lead--stacked p {
    font-size: clamp(42px, 3.15vw, 64px);
    line-height: 0.96;
    letter-spacing: 0;
}

.about-story-block--philosophy .about-story-block__copy {
    align-self: end;
    max-width: 220px;
    padding-top: 0;
    padding-bottom: 0;
}

.about-story-block--philosophy .about-story-block__copy p {
    font-size: 18px;
    line-height: 1.58;
    text-align: left;
}

.about-story-block--philosophy .about-story-block__media img {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 0.67 / 1;
    object-position: center top;
}

.signature-wrapper {
    margin-top: 10px;
    text-align: left;
}

.about-signature {
    font-size: 52px;
    color: #7f7267;
    white-space: nowrap;
}

.about-story-block--philosophy .signature-wrapper {
    grid-column: 2;
    align-self: start;
    margin-top: 0;
    text-align: left;
}

.about-story-block--philosophy .about-divider--compact {
    grid-column: 1;
    align-self: start;
    margin-top: 4px;
}

.about-cta-band__inner {
    padding: 54px 0 64px;
    text-align: center;
}

.about-cta-band .servico-btn {
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .about-intro-band__inner,
    .about-story-block__inner,
    .about-cta-band__inner {
        width: min(100% - 56px, 960px);
    }

    .about-intro-band__inner {
        padding: 50px 0 58px;
    }

    .about-story-block__lead p {
        font-size: clamp(28px, 4.2vw, 48px);
    }

    .about-story-block__copy p {
        font-size: 20px;
    }

    .about-story-block--team .about-story-block__copy p,
    .about-story-block--philosophy .about-story-block__copy p {
        font-size: 18px;
    }

    .about-story-block__inner,
    .about-story-block--reverse .about-story-block__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 52px 0;
    }

    .about-story-block__content,
    .about-story-block__content--signature {
        text-align: center;
    }

    .about-story-block__content--split,
    .about-story-block__copy--columns {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin: 0 auto;
    }

    .about-story-block__content--statement-left,
    .about-story-block__content--statement-right {
        padding-top: 0;
    }

    .about-story-block__lead--wide,
    .about-story-block__lead--stacked,
    .about-story-block__copy--narrow,
    .about-story-block__content--signature .about-story-block__copy p {
        max-width: none;
    }

    .about-story-block__content--statement-left .about-story-block__copy,
    .about-story-block__content--statement-right .about-story-block__copy {
        align-self: start;
        padding: 0;
    }

    .about-story-block--reverse .about-story-block__media img {
        max-width: none;
    }

    .about-story-block--team .about-story-block__inner,
    .about-story-block--philosophy .about-story-block__inner,
    .about-story-block--team .about-story-block__content--statement-left,
    .about-story-block--philosophy .about-story-block__content--statement-right {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 720px;
    }

    .about-story-block--team .about-story-block__copy,
    .about-story-block--philosophy .about-story-block__copy {
        max-width: none;
        padding-top: 0;
    }

    .about-story-block--team .about-story-block__media img,
    .about-story-block--philosophy .about-story-block__media img {
        max-width: none;
    }

    .about-divider--compact {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .signature-wrapper {
        grid-column: auto;
        text-align: center;
    }

    .about-story-block--philosophy .about-story-block__lead p {
        text-align: left;
    }
}

@media (max-width: 700px) {
    .about-hero-img {
        height: auto;
        min-height: 0;
        aspect-ratio: 1.45 / 1;
    }

    .about-intro-band__inner,
    .about-story-block__inner,
    .about-cta-band__inner {
        width: calc(100% - 36px);
    }

    .about-intro-band::before,
    .about-intro-band::after,
    .about-story-block--rose::after,
    .about-story-block--light::after,
    .about-cta-band::before {
        width: 110px;
        height: 150px;
        opacity: 0.2;
    }

    .about-intro-band__inner {
        padding: 36px 0 44px;
    }

    .about-intro-band__eyebrow {
        font-size: 14px;
        line-height: 1.5;
    }

    .about-intro-band h2,
    .about-cta-band h3 {
        font-size: 17px;
        line-height: 1.5;
    }

    .about-story-block__lead p {
        font-size: 28px;
        line-height: 1.08;
    }

    .about-story-block__copy p {
        font-size: 18px;
        line-height: 1.8;
    }

    .about-story-block__inner {
        gap: 28px;
        padding: 40px 0;
    }

    .about-story-block__media img {
        aspect-ratio: 0.9 / 1;
    }

    .about-signature {
        font-size: 44px;
    }

.about-cta-band__inner {
    padding: 42px 0 48px;
}
}

/* ============================
   HOME SERVICES ELEGANT
============================ */
.home-services-elegant {
    background:
        radial-gradient(circle at top left, rgba(224, 206, 190, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(224, 206, 190, 0.16), transparent 26%),
        linear-gradient(180deg, #fffdf9 0%, #fff 100%);
    padding: 92px 32px 98px;
    text-align: center;
}

.home-services-elegant__inner {
    width: min(100%, 1500px);
    margin: 0 auto;
}

.home-services-elegant h2 {
    max-width: 1180px;
    margin: 0 auto;
    font-size: clamp(40px, 2.2vw, 72px);
    line-height: 1.26;
    color: #231c19;
}

.home-services-elegant .site-section-divider {
    margin-bottom: 26px;
}

.home-services-elegant .site-section-divider--bottom {
    margin-top: 28px;
    margin-bottom: 44px;
}

.home-services-elegant__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.home-service-card {
    background: rgba(255, 255, 255, 0.82);
    min-height: 580px;
    padding: 42px 38px 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home-service-card img {
    width: 132px;
    height: 132px;
    object-fit: contain;
    margin-bottom: 26px;
    opacity: 0.92;
}

.home-service-card h3 {
    font-family: 'Italiana', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.24;
    letter-spacing: 0;
    text-transform: none;
    color: #231c19;
    margin: 0;
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-service-card__rule {
    width: 58px;
    height: 1px;
    background: #c7aa8c;
    margin: 22px 0 26px;
}

.home-service-card p {
    font-size: 18px;
    line-height: 1.9;
    white-space: pre-line;
    color: #403630;
    margin: 0;
}

@media (max-width: 1200px) {
    .home-services-elegant__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .home-service-card {
        min-height: 0;
    }
}

@media (max-width: 700px) {
    .home-services-elegant {
        padding: 56px 16px 62px;
    }

    .home-services-elegant h2 {
        font-size: 24px;
        line-height: 1.38;
    }

    .home-services-elegant__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-service-card {
        min-height: 0;
        padding: 24px 18px 28px;
    }

    .home-service-card img {
        width: 72px;
        height: 72px;
        max-width: 72px;
        max-height: 72px;
        margin-bottom: 16px;
    }

    .home-service-card h3 {
        font-size: 18px;
        line-height: 1.34;
        letter-spacing: 0.5px;
        min-height: 0;
        display: block;
    }

    .home-service-card p {
        font-size: 15px;
        line-height: 1.7;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .home-service-card__rule {
        margin: 14px 0 16px;
    }
}

.galleries-showcase__actions {
    margin-top: 28px;
}

.galleries-showcase__button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 34px;
    border: 1px solid rgba(185, 154, 122, 0.72);
    color: #332924;
    text-decoration: none;
    font-family: 'Aboreto', cursive;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    white-space: pre-line;
}

@media (max-width: 1200px) {
    .galleries-showcase .portfolio-item {
        min-height: 0;
    }
}

@media (max-width: 1024px) {
    .insta-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer-elegant__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .site-footer-elegant__col {
        min-height: 0;
        padding: 12px 0;
    }

    .site-footer-elegant__col + .site-footer-elegant__col {
        border-left: 0;
        border-top: 1px solid rgba(199, 174, 147, 0.7);
    }

    .galleries-showcase .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        row-gap: 20px;
    }

    .galleries-showcase__grid {
        width: min(calc(100% - 72px), 1120px);
    }

    .galleries-showcase .portfolio-item {
        min-height: 0;
    }
}

@media (max-width: 700px) {
    .site-instagram-journey,
    .site-footer-elegant,
    .galleries-showcase {
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-instagram-journey .insta-title,
    .galleries-showcase__heading h2 {
        font-size: clamp(54px, 16vw, 84px);
    }

    .site-section-subtitle,
    .galleries-showcase__subtitle {
        font-size: 18px;
    }

    .insta-strip {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .galleries-showcase .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        row-gap: 18px;
    }

    .galleries-showcase__grid {
        width: calc(100% - 28px);
    }

    .galleries-showcase .portfolio-item {
        min-height: 0;
    }

    .galleries-showcase .image-overlay__band strong {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .galleries-showcase .image-overlay__band span,
    .galleries-showcase__button,
    .site-instagram-handle {
        font-size: 12px;
        letter-spacing: 2.8px;
    }
}

/* ============================
   FINAL OVERRIDES
============================ */
.hero-slide-divider span::before {
    content: "";
    display: block;
    width: 84px;
    height: 54px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("../imagens/icon_flower_span_slide.png?v=2026071444");
}

.galleries-showcase__grid[data-media-loader] > .section-media-loader {
    justify-content: center;
    padding-top: 0;
    inset: 0 0 auto 0;
    min-height: 320px;
}

@media (max-width: 1024px) {
    .galleries-showcase__grid[data-media-loader] > .section-media-loader {
        min-height: 280px;
    }
}

@media (max-width: 700px) {
    .galleries-showcase__grid[data-media-loader] > .section-media-loader {
        justify-content: flex-start;
        padding-top: 56px;
        min-height: 220px;
    }
}

.galleries-showcase .portfolio-item {
    margin: 0;
}

.galleries-showcase .portfolio-item > a,
.galleries-showcase .image-container {
    display: block;
    width: 100%;
    height: 100%;
}

.galleries-showcase .image-container {
    border-radius: inherit;
}

/* FIX alinhamento imagens testimonials */
.testimonials-caixas .test-box.offset {
    margin-top: 0 !important;
}

.testimonials-caixas .test-box {
    padding-top: 0 !important;
}

.testimonials-caixas .test-box-inner {
    padding-top: 0 !important;
}

.testimonials-caixas .test-box-inner img {
    margin-top: 0 !important;
    display: block !important;
}


.contact-info {
    text-align: center;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 35px;
}

.contact-card {
    display: block;
    background: #f7f4f0;
    padding: 35px 24px;
    text-decoration: none;
    color: #222;
    transition: all .3s ease;
}

.contact-card:hover {
    background: #efe8df;
    transform: translateY(-4px);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    color: #b89b76;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card h4 {
    font-family: 'Aboreto', serif;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.contact-card p {
    font-family: 'Arsenal', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

.contact-page {
    padding: 130px 6% 90px;
    background: #fff;
}

.contact-hero-title {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 55px;
}

.contact-hero-title h1 {
    font-family: 'Italiana', serif;
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-leaf,
.form-divider span {
    color: #c9ae84;
    font-size: 30px;
    display: block;
    margin-bottom: 18px;
}

.contact-hero-title p {
    font-family: 'Arsenal', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    white-space: pre-line;
}

.contact-info {
    max-width: 1180px;
    margin: 0 auto 70px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.contact-card {
    background: #fbfaf7;
    border: 1px solid #eee7dc;
    border-radius: 8px;
    min-height: 170px;
    padding: 36px 24px;
    text-align: center;
    text-decoration: none;
    color: #222;
    box-shadow: 0 8px 24px rgba(0,0,0,0.035);
}

.contact-icon {
    color: #c9ae84;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    display: inline-flex;
}

.contact-card h4 {
    font-family: 'Aboreto', serif;
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.contact-card p {
    font-family: 'Arsenal', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-area {
    max-width: 1180px;
    margin: 0 auto;
    border-top: 1px solid #e7dfd2;
    padding-top: 35px;
}

.form-divider {
    text-align: center;
    margin-top: -53px;
    background: #fff;
}

.contact-form-area h2 {
    text-align: center;
    font-family: 'Aboreto', serif;
    font-size: 15px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 35px;
}

.contact-form-area form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 35px;
}

.contact-form-area label {
    display: block;
    font-family: 'Aboreto', serif;
    font-size: 10px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-form-area input,
.contact-form-area textarea,
.contact-form-area select {
    width: 100%;
    height: 48px;
    border: 1px solid #e6ded2;
    background: transparent;
    padding: 0 16px;
    font-family: 'Arsenal', sans-serif;
    font-size: 14px;
}

.contact-form-area textarea {
    grid-column: span 2;
    height: 140px;
    padding-top: 14px;
}

.contact-form-area button {
    grid-column: span 2;
    justify-self: center;
    background: #c9ae84;
    color: white;
    border: 0;
    padding: 14px 60px;
    letter-spacing: 3px;
    font-family: 'Aboreto', serif;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-hero-title h1 {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .contact-cards,
    .contact-form-area form {
        grid-template-columns: 1fr;
    }

    .contact-form-area textarea,
    .contact-form-area button {
        grid-column: span 1;
    }
}

.contact-form-area {
    max-width: 1120px;
    margin: 70px auto 0;
    border-top: 1px solid #e8ded0;
    padding-top: 32px;
}

.form-divider {
    text-align: center;
    margin-top: -52px;
    background: #fff;
}

.form-divider span {
    display: inline-block;
    background: #fff;
    padding: 0 22px;
    color: #c9ad82;
    font-size: 30px;
}

.contact-form-area h2 {
    text-align: center;
    font-family: 'Aboreto', serif;
    font-size: 14px;
    letter-spacing: 5px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 18px 0 34px;
}

.afd-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 34px;
}

.form-group label {
    display: block;
    font-family: 'Aboreto', serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 9px;
    color: #4b4038;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #e6ddd0;
    background: #fff;
    height: 48px;
    padding: 0 16px;
    font-family: 'Arsenal', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
}

.form-group textarea {
    height: 130px;
    padding-top: 15px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b9afa5;
}

.form-full {
    grid-column: 1 / -1;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 8px;
}

.form-submit button {
    background: #c6a982;
    color: #fff;
    border: none;
    min-width: 280px;
    height: 48px;
    font-family: 'Aboreto', serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
}

.servico-texto h2,
.intro h2,
.test-box-inner h3,
.testimonials-heading h1,
.video-caption-box h3,
.site-section-eyebrow,
.site-instagram-journey .insta-title,
.site-instagram-handle,
.site-footer-elegant h3,
.site-footer-elegant p,
.galleries-showcase__heading h2,
.galleries-showcase__button,
.image-overlay__band strong,
.image-overlay__band span,
.galeria_legenda h2,
.image-overlay-desc,
.gallery-credit-item,
.about-intro-band h2,
.about-story-block__lead p,
.home-services-elegant h2,
.home-service-card h3,
.contact-hero-title h1,
.contact-card h4,
.contact-card p,
.hero-slide-cta {
    white-space: pre-line;
}

@media (max-width: 700px) {
    .servico-texto h2,
    .intro h2,
    .test-box-inner h3,
    .testimonials-heading h1,
    .video-caption-box h3,
    .site-footer-elegant p,
    .galleries-showcase__heading h2,
    .image-overlay-desc,
    .gallery-credit-item,
    .about-intro-band h2,
    .about-story-block__lead p,
    .home-services-elegant h2,
    .home-service-card p,
    .contact-hero-title h1,
    .contact-card p {
        text-align: justify;
        text-align-last: center;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .servico-texto h2,
    .intro h2,
    .test-box-inner h3,
    .testimonials-heading h1,
    .video-caption-box h3,
    .galleries-showcase__heading h2,
    .about-intro-band h2,
    .about-story-block__lead p,
    .home-services-elegant h2,
    .contact-hero-title h1 {
        white-space: normal;
        text-align: center;
        text-align-last: center;
        hyphens: none;
    }

    .home-service-card p {
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .about-story-block__copy p,
    .servico-texto p,
    .pdf-intro-copy p,
    .test-box-inner p,
    .testimonials-heading p,
    .contact-intro,
    .contact-hero-title p {
        text-align: justify;
        text-align-last: left;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .about-story-block--team .about-story-block__content--statement-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 440px;
        margin: 0 auto;
    }

    .about-story-block--team .about-story-block__lead p {
        max-width: 390px;
        margin: 0 auto 14px;
        font-size: 32px;
        line-height: 1.08;
        text-align: center;
        text-align-last: center;
        white-space: normal !important;
        text-wrap: normal;
    }

    .about-story-block--team .about-story-block__lead,
    .about-story-block--philosophy .about-story-block__lead {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        align-self: center;
    }

    .about-story-block--team .about-story-block__copy {
        max-width: 380px;
        margin: 0 auto;
        order: 2;
    }

    .about-story-block--team .about-story-block__copy p {
        font-size: 17px;
        line-height: 1.68;
        text-align: center;
        text-align-last: center;
        hyphens: none;
    }

    .about-story-block--team .about-story-block__media img {
        display: block;
        width: 100%;
        max-width: 420px;
        margin: 8px auto 0;
        aspect-ratio: 1.1 / 1;
        object-fit: cover;
        object-position: center;
    }

    .about-story-block--philosophy .about-story-block__content--statement-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
    }

    .about-story-block--philosophy .about-story-block__lead p {
        display: block;
        width: 100%;
        max-width: 390px;
        margin: 0 auto 12px;
        font-size: 32px;
        line-height: 1.08;
        text-align: center;
        text-align-last: center;
        white-space: normal !important;
        text-wrap: normal;
    }

    .about-story-block--philosophy .about-story-block__copy {
        max-width: 380px;
        margin: 0 auto;
        padding: 0;
        order: 2;
    }

    .about-story-block--philosophy .about-story-block__copy p {
        font-size: 17px;
        line-height: 1.68;
        text-align: center;
        text-align-last: center;
        hyphens: none;
    }

    .about-story-block--philosophy .signature-wrapper {
        width: 100%;
        margin: 20px auto 0;
        text-align: center;
        order: 4;
    }

    .about-story-block--philosophy .about-divider--compact {
        order: 3;
        margin: 8px auto 0;
    }

    .about-story-block--philosophy .about-signature {
        display: inline-block;
        max-width: 100%;
        font-size: 38px;
        line-height: 1.05;
        white-space: normal;
    }

    .about-mobile-title-break {
        display: block;
    }

    .about-story-block--philosophy .about-story-block__lead.about-story-block__lead--stacked p {
        text-align: center !important;
        text-align-last: center !important;
    }
}

.form-submit p {
    margin-top: 15px;
    font-family: 'Arsenal', sans-serif;
    font-size: 13px;
    color: #6f665e;
}

.form-submit span {
    display: block;
    color: #c9ad82;
    font-size: 26px;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .afd-contact-form {
        grid-template-columns: 1fr;
    }

    .form-full,
    .form-submit {
        grid-column: auto;
    }

    .form-submit button {
        width: 100%;
        min-width: 0;
    }
}


.site-footer-bottom {
    border-top: 1px solid #eee8df;
    padding: 18px 6%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    font-family: 'Arsenal', sans-serif;
    font-size: 13px;
}

.site-footer-bottom p {
    margin: 0;
    font-family: 'Arsenal', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

.site-footer-legal {
    display: flex;
    gap: 60px;
}

.site-footer-legal a {
    color: inherit;
    text-decoration: none;
    font-family: 'Arsenal', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

.site-footer-legal a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .site-footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        font-size: 13px;
        line-height: 1.55;
    }

    .site-footer-legal {
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
    }

    .site-footer-rights {
        display: block;
        margin-top: 6px;
    }
}

.legal-page {
    background:
        radial-gradient(circle at top left, rgba(224, 206, 190, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(224, 206, 190, 0.14), transparent 26%),
        linear-gradient(180deg, #fffdf9 0%, #fff 100%);
    color: #312a26;
}

.legal-hero {
    width: min(100% - 48px, 980px);
    margin: 0 auto;
    padding: 128px 0 54px;
    text-align: center;
}

.legal-hero h1 {
    margin: 18px 0 0;
    font-family: 'Italiana', serif;
    font-size: clamp(48px, 6vw, 86px);
    font-weight: 400;
    line-height: 0.98;
}

.legal-content {
    width: min(100% - 48px, 920px);
    margin: 0 auto;
    padding: 0 0 110px;
    font-family: 'Arsenal', sans-serif;
    font-size: 18px;
    line-height: 1.78;
}

.legal-content h2 {
    margin: 42px 0 14px;
    font-family: 'Aboreto', serif;
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: 2px;
    color: #2f2621;
}

.legal-content p {
    margin: 0 0 18px;
}

.legal-content .legal-updated {
    margin: 0 auto 36px;
    text-align: center;
    color: #9a7d61;
    font-size: 15px;
    letter-spacing: 1px;
}

.legal-content ul {
    margin: 0 0 22px 0;
    padding-left: 22px;
}

.legal-content li {
    margin: 0 0 8px;
}

.legal-content a {
    color: inherit;
    text-decoration-color: #c6a982;
    text-underline-offset: 4px;
}

@media (max-width: 700px) {
    .legal-hero {
        width: calc(100% - 36px);
        padding: 86px 0 36px;
    }

    .legal-hero h1 {
        font-size: 42px;
        line-height: 1.02;
    }

    .legal-content {
        width: calc(100% - 40px);
        padding-bottom: 76px;
        font-size: 17px;
        line-height: 1.72;
    }

    .legal-content h2 {
        margin-top: 34px;
        font-size: 15px;
        letter-spacing: 1.5px;
    }
}
