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

html {
    scroll-behavior: smooth;
}

html, body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

/* ========================================
   SEÇÃO 1: HERO
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-texture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 45%;
    left: 0;
    padding: 0 8% 0 20%;
    display: flex;
    justify-content: flex-start;
}

.headline {
    text-align: center;
}

.headline-sub {
    color: #fff;
    font-family: 'brandon-grotesque', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.7rem, 0.9vw, 0.85rem);
    letter-spacing: 0.3em;
    margin-bottom: 0px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.headline h1 {
    color: #fff;
    font-family: 'brandon-grotesque', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    line-height: 1.2;
    letter-spacing: 0.15em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 0px;
    white-space: nowrap;
}

.headline-location {
    color: #fff;
    font-family: 'brandon-grotesque', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 1.2vw, 1rem);
    letter-spacing: 0.2em;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* ========================================
   SEÇÃO 2: FORMULÁRIO - ANTECIPE-SE
   ======================================== */
.form-strip {
    background: url('assets/img/image00003 1.webp') center/cover no-repeat;
    position: relative;
    padding: 40px 8%;
}

.form-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.form-strip-content {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.form-left {
    flex-shrink: 0;
    text-align: center;
}

.form-title {
    color: #fff;
    font-family: 'brandon-grotesque', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.3vw, 1.15rem);
    letter-spacing: 0.2em;
    line-height: 1.7;
}

.form-right {
    flex-shrink: 0;
    min-width: 600px;
}

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

.form-columns {
    display: flex;
    gap: 20px;
    max-width: 1000px;
}

.form-col-left,
.form-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 250px;
}

.form-group {
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 6px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    font-family: 'brandon-grotesque', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.6);
    font-family: 'brandon-grotesque', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
}

.form-group input:focus {
    outline: none;
    border-bottom-color: #c17f4a;
}

.btn-submit {
    background: #1FCA6C;
    border: none;
    border-radius: 0;
    color: #fff;
    padding: 8px 20px;
    font-family: 'Flama', 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.btn-submit:hover {
    background: #17b05d;
}

.btn-submit:hover {
    background: #fff;
    color: #1a1a1a;
}

/* ========================================
   SEÇÃO 3: VÍDEO + TIPOLOGIA
   ======================================== */
.video-section {
    position: relative;
    padding: 60px 8% 70px;
    overflow: hidden;
}

.video-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/img/image00006 2.webp') center/cover no-repeat;
    z-index: 0;
}

/* W decorativo (imagem Ativo) atrás do vídeo */
.video-v-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: none;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.video-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.video-header {
    margin-bottom: 40px;
}

.video-header h2 {
    font-family: 'brandon-grotesque', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    letter-spacing: 0.2em;
    color: #fff;
    margin-bottom: 8px;
}

.video-subtitle {
    font-family: 'brandon-grotesque', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.76rem, 1.07vw, 0.92rem);
    letter-spacing: 0.25em;
    color: #fff;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: linear-gradient(135deg, #c49a6c 0%, #8b5e3c 50%, #d4a574 100%);
    cursor: pointer;
    overflow: hidden;
    border-radius: 2px;
}

.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.3s;
}

.play-btn:hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video desktop/mobile toggle */
.video-mobile {
    display: none;
}

.video-desktop {
    display: block;
}

/* ========================================
   VERSÃO 2: Layout lado a lado (texto + vídeo vertical)
   ======================================== */
.video-content--v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.video-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.video-content--v2 .video-header {
    margin-bottom: 0;
}

.video-content--v2 .video-header h2 {
    text-align: center;
    color: #c49a64;
}

.video-content--v2 .video-subtitle {
    text-align: center;
    color: #c49a64;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
}

.video-title-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 18px;
}

.video-subtitle-img {
    max-width: 230px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Desktop: esconder texto, mostrar imagens */
.video-header-text,
.video-subtitle-text {
    display: none;
}

.video-content--v2 .inspiration-box--v2 {
    margin-top: 20px;
    align-items: center;
}

.video-content--v2 .inspiration-text {
    text-align: center;
    font-size: clamp(0.7rem, 1vw, 0.85rem);
}

.video-right {
    flex-shrink: 0;
    width: 300px;
}

.video-vertical-desktop {
    display: block;
    position: relative;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
    aspect-ratio: 9 / 16;
}

.video-poster-vertical {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-vertical-desktop .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
}

/* ========================================
   MODAL DE VÍDEO (Mobile)
   ======================================== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.video-modal-content {
    position: relative;
    z-index: 1;
    width: 92%;
    max-width: 450px;
    max-height: 85vh;
}

.video-modal--desktop .video-modal-content {
    max-width: 900px;
    width: 85%;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px 10px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.video-modal-close:hover {
    opacity: 1;
}

.video-modal-player {
    width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    background: #000;
}

/* ========================================
   INSPIRAÇÃO (dentro da seção vídeo)
   ======================================== */
.inspiration-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 100px;
}

.inspiration-text {
    color: #fff;
    font-family: 'brandon-grotesque', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(0.85rem, 1.3vw, 1.1rem);
    letter-spacing: 0.25em;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.btn-cta {
    display: inline-block;
    background: #1FCA6C;
    border: none;
    border-radius: 25px;
    color: #fff;
    padding: 14px 40px;
    font-family: 'brandon-grotesque', 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #17b05d;
    color: #fff;
}

/* ========================================
   SEÇÃO 5: FOOTER
   ======================================== */
.lp-footer {
    background: #351E13;
    padding: 70px 8% 0;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 70px;
}

.footer-row {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.footer-row-logo {
    flex-shrink: 0;
    width: 160px;
}

.footer-row-text {
    flex: 1;
    max-width: 700px;
    text-align: left;
}

.footer-logo-main {
    width: 160px;
    height: auto;
}

.footer-logo-placeholder {
    width: 160px;
    height: 80px;
}

.footer-about {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
}

.footer-partner-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    line-height: 1.8;
    color: #fff;
}

.footer-bottom {
    background: url('assets/img/image00003.webp') center/cover no-repeat;
    padding: 8px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
}

.footer-logos-img {
    max-width: 350px;
    width: auto;
    height: 30px;
    object-fit: contain;
    opacity: 0.9;
}

.footer-handmade {
    font-family: 'brandon-grotesque', 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 0.6rem;
    color: #fff;
    letter-spacing: 0.05em;
    text-align: right;
    opacity: 0.8;
    margin-right: 5%;
    line-height: 1.2;
}

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

/* Tablet */
@media (max-width: 992px) {

    /* ---------- HERO ---------- */
    .hero-content {
        padding: 0 8% 16% 15%;
    }

    .headline h1 {
        font-size: clamp(1.3rem, 2.5vw, 2rem);
        white-space: normal;
    }

    .headline-sub {
        font-size: clamp(0.6rem, 0.85vw, 0.78rem);
    }

    .headline-location {
        font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    }

    /* ---------- FORMULÁRIO ---------- */
    .form-strip-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .form-title {
        white-space: normal;
    }

    .form-right {
        min-width: unset;
        width: 100%;
        max-width: 600px;
    }

    .btn-submit {
        align-self: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* ---------- HERO ---------- */
    .hero {
        height: 75vw;
        min-height: unset !important;
        overflow: hidden;
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .bg-texture {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
    }

    .hero-content {
        position: absolute;
        bottom: 72%;
        width: 100%;
        padding: 0 6%;
        justify-content: center;
    }

    .headline {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .headline-sub {
        font-size: clamp(0.6rem, 2.8vw, 0.75rem);
        letter-spacing: 0.35em;
        margin-bottom: 6px;
    }

    .headline-location {
        font-size: clamp(0.55rem, 2.5vw, 0.75rem);
        letter-spacing: 0.18em;
        margin-bottom: 2px;
    }

    .headline h1 {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        text-align: center;
        white-space: normal;
        letter-spacing: 0.18em;
    }

    /* ---------- FORMULÁRIO ---------- */
    .form-strip {
        padding: 35px 8%;
        background: url('assets/img/image00003 1-mobile.webp') center/cover no-repeat;
    }

    .form-strip-content {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .form-left {
        text-align: center;
    }

    .form-title {
        font-size: clamp(0.8rem, 3.5vw, 1rem);
        letter-spacing: 0.22em;
        line-height: 1.8;
    }

    .form-right {
        min-width: unset;
        width: 100%;
    }

    .form-columns {
        flex-direction: column;
        gap: 8px;
    }

    .form-col-left,
    .form-col-right {
        min-width: unset;
        width: 100%;
    }

    .form-group input {
        padding: 10px 0;
        font-size: 0.7rem;
    }

    .form-group input::placeholder {
        font-size: 0.65rem;
    }

    .btn-submit {
        margin-top: 15px;
        width: 100%;
        padding: 14px 20px;
        font-size: 0.6rem;
        border-radius: 0;
        letter-spacing: 0.18em;
    }

    /* ---------- VÍDEO + TIPOLOGIA ---------- */
    .video-section {
        padding: 45px 6% 55px;
    }

    .video-bg-texture {
        background: url('assets/img/image00006 2-mobile.webp') center/cover no-repeat;
    }

    .video-v-decoration {
        width: 180%;
    }

    .video-header {
        margin-bottom: 25px;
    }

    .video-header h2 {
        font-size: clamp(0.72rem, 3.5vw, 1rem);
        letter-spacing: 0.15em;
    }

    .video-subtitle {
        font-size: clamp(0.5rem, 2.45vw, 0.68rem);
        letter-spacing: 0.11em;
    }

    .video-wrapper {
        max-width: 100%;
    }

    .video-desktop {
        display: none;
    }

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

    .video-mobile {
        display: block;
        width: 100%;
    }

    .video-content--v2 {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    /* Mobile: esconder imagens, mostrar texto */
    .video-title-img,
    .video-subtitle-img {
        display: none;
    }

    .video-header-text,
    .video-subtitle-text {
        display: block;
    }

    .video-content--v2 .video-header {
        margin-bottom: 40px;
        order: 1;
    }

    .video-content--v2 .video-header h2 {
        text-align: center;
        color: #fff;
        display: block;
        width: 100%;
    }

    .video-content--v2 .video-subtitle {
        text-align: center;
        color: #fff;
        font-size: clamp(0.5rem, 2.45vw, 0.68rem);
    }

    .video-content--v2 .video-left {
        display: contents;
    }

    .video-content--v2 .video-right {
        order: 2;
        width: 100%;
    }

    .video-content--v2 .inspiration-box--v2 {
        order: 3;
        margin-top: 100px;
    }

    .video-content--v2 .inspiration-text {
        text-align: center;
        font-size: clamp(0.85rem, 1.3vw, 1.1rem);
    }

    .inspiration-box--v2 {
        align-items: center;
    }

    .video-right {
        width: 100%;
    }

    .video-mobile-thumb {
        position: relative;
        width: 65%;
        margin: 0 auto;
        aspect-ratio: 9 / 14;
        background: #f0e0d0;
        border-radius: 6px;
        overflow: hidden;
        cursor: pointer;
    }

    .video-mobile-thumb-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #c49a6c 0%, #8b5e3c 50%, #d4a574 100%);
    }

    .inspiration-box {
        margin-top: 55px;
        gap: 25px;
    }

    .inspiration-text {
        font-size: clamp(0.68rem, 3vw, 0.85rem);
        letter-spacing: 0.18em;
        line-height: 2;
    }

    .btn-cta {
        padding: 13px 32px;
        font-size: 0.55rem;
        letter-spacing: 0.18em;
    }

    /* ---------- FOOTER ---------- */
    .lp-footer {
        padding: 40px 7% 0;
    }

    .footer-top {
        gap: 35px;
        margin-bottom: 40px;
    }

    .footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
    }

    .footer-row-logo {
        width: auto;
    }

    .footer-logo-main {
        width: 110px;
    }

    .footer-row-text {
        text-align: left;
    }

    .footer-about {
        font-size: 0.78rem;
        line-height: 1.55;
    }

    .footer-bottom {
        background: url('assets/img/image00001 1-mobile.webp') center/cover no-repeat;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 18px 6%;
        padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
        text-align: center;
    }

    .footer-logos-img {
        max-width: 65%;
        width: 100%;
    }

    .footer-handmade {
        text-align: right;
        margin-right: 0;
        font-size: 0.6rem;
        white-space: nowrap;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {

    .hero-content {
        padding: 0 5%;
        bottom: 72%;
    }

    .headline h1 {
        font-size: clamp(1.15rem, 5.5vw, 1.5rem);
    }

    .headline-location {
        font-size: clamp(0.65rem, 3vw, 0.85rem);
    }

    .headline-sub {
        font-size: clamp(0.55rem, 2.5vw, 0.68rem);
    }

    .form-strip {
        padding: 30px 6%;
    }

    .form-title {
        font-size: clamp(0.75rem, 3.2vw, 0.9rem);
    }

    .form-group input {
        padding: 10px 0;
        font-size: clamp(0.6rem, 3vw, 0.7rem);
    }

    .form-group input::placeholder {
        font-size: clamp(0.55rem, 2.8vw, 0.65rem);
    }

    .video-section {
        padding: 35px 5% 45px;
    }

    .video-header h2 {
        font-size: clamp(0.65rem, 3.2vw, 0.85rem);
        letter-spacing: 0.1em;
    }

    .video-subtitle {
        font-size: clamp(0.46rem, 2.3vw, 0.6rem);
        letter-spacing: 0.09em;
    }

    .btn-submit {
        width: 100%;
        text-align: center;
        padding: 13px 18px;
        font-size: clamp(0.5rem, 2.5vw, 0.6rem);
    }

    .btn-cta {
        padding: 12px 25px;
        font-size: 0.52rem;
    }

    .inspiration-text {
        font-size: clamp(0.6rem, 2.8vw, 0.75rem);
        letter-spacing: 0.12em;
    }

    .inspiration-box {
        margin-top: 40px;
        gap: 20px;
    }

    .footer-logos-img {
        max-width: 65%;
    }

    .footer-about {
        font-size: 0.72rem;
    }

    .footer-logo-main {
        width: 90px;
    }

    .footer-handmade {
        font-size: clamp(0.45rem, 2.5vw, 0.6rem);
    }
}

/* Mobile muito pequeno (iPhone SE, Galaxy S mini) */
@media (max-width: 360px) {

    .hero {
        height: 80vw;
    }

    .hero-content {
        padding: 0 4%;
        bottom: 70%;
    }

    .headline h1 {
        font-size: clamp(1rem, 5.2vw, 1.3rem);
        letter-spacing: 0.12em;
    }

    .headline-sub {
        font-size: clamp(0.5rem, 2.3vw, 0.6rem);
        letter-spacing: 0.25em;
    }

    .headline-location {
        font-size: clamp(0.5rem, 2.5vw, 0.7rem);
        letter-spacing: 0.12em;
    }

    .form-strip {
        padding: 25px 5%;
    }

    .form-title {
        font-size: clamp(0.7rem, 3vw, 0.85rem);
        letter-spacing: 0.15em;
    }

    .video-section {
        padding: 30px 5% 40px;
    }

    .video-header h2 {
        font-size: clamp(0.58rem, 3vw, 0.75rem);
    }

    .inspiration-text {
        font-size: clamp(0.55rem, 2.6vw, 0.7rem);
        letter-spacing: 0.1em;
    }

    .btn-cta {
        padding: 11px 22px;
        font-size: clamp(0.45rem, 2.2vw, 0.52rem);
    }

    .lp-footer {
        padding: 30px 5% 0;
    }

    .footer-about {
        font-size: 0.65rem;
    }

    .footer-logo-main {
        width: 80px;
    }

    .footer-bottom {
        padding: 15px 5%;
        gap: 8px;
    }

    .footer-logos-img {
        max-width: 62%;
    }

    .footer-handmade {
        font-size: clamp(0.4rem, 2.2vw, 0.5rem);
    }
}
