

:root {
    --way-orange:   #DA5A31;
    --way-beige:    #8E6F57;
    --way-dark:     #0e0e0e;
    --way-dark2:    #1a1a1a;
    --way-green:    #505622;
    --way-light:    #EFEDED;
}

.way-orange { color: var(--way-orange); }


.way-hero {
    background-image: url('/images/Way_fundo_landing_page.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.way-hero__row {
    width: 100%;
    min-height: 100vh;
    padding: 5rem 2rem 2rem; 
    align-items: center;
}


.way-hero__logo-col {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem 2rem;
}

.way-hero__logo { max-width: 320px; width: 100%; }


.way-hero__right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 2rem 1rem 1rem;
}

.way-hero__title {
    color: var(--way-light);
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.25;
    margin: 0;
}


.way-plantas-box {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 1.25rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.way-plantas-box__label {
    color: var(--way-beige);
    background-color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    border: none;
    padding: 0.25rem 0.75rem;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.way-plantas-box__slide-title {
    color: var(--way-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

.way-plantas-box__img { max-height: 320px; object-fit: contain; }


.way-section-dark { background-color: var(--way-dark); }

.way-text-light {
    color: var(--way-light);
    font-size: 1rem;
    line-height: 1.75;
}


.way-ficha__label {
    color: var(--way-beige);
    background-color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    padding: 0.25rem 0.75rem;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.way-ficha__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.way-ficha__list li {
    color: var(--way-light);
    font-size: 1.3rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    line-height: 1.4;
}

.way-ficha__list li:last-child { border-bottom: none; }


.way-gallery {
    display: grid;
    grid-template-columns: 1fr 40px 2fr;
    gap: 1rem;
    align-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}


.way-gallery__thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.way-gallery__thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s, border 0.3s;
    border: 2px solid transparent;
}

.way-gallery__thumb:hover,
.way-gallery__thumb.active {
    opacity: 1;
    border-color: white;
}


.way-gallery__sep {
    display: flex;
    justify-content: center;
    align-items: center;
}

.way-gallery__arrow {
    color: var(--way-light);
    font-size: 2rem;
    opacity: 0.6;
    user-select: none;
}


.way-gallery__main img {
    width: 100%;
    border-radius: 8px;
    display: block;
}


.way-pavimentos {
    background-color: var(--way-dark2);
    padding: 3rem 0 4rem;
}

.way-pavimentos__slide {
    padding: 0 2rem;
}


.way-pavimentos__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.way-pavimentos__list li {
    color: white;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}


.way-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background-color: var(--way-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}


.way-pavimentos__img {
    max-height: 340px;
    object-fit: contain;
    width: 100%;
}


.way-pavimentos__caption {
    color: var(--way-orange);
    font-weight: bold;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}


.way-pavimentos__slogan {
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: left;
}


.spinner-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-inner {
    position: absolute;
    top: 50%; left: 50%;
    width: 2rem; height: 2rem;
    transform: translate(-50%, -50%);
    color: var(--way-orange);
}

.spinner-outer {
    position: absolute;
    top: 50%; left: 50%;
    width: 4rem; height: 4rem;
    transform: translate(-50%, -50%);
    animation: spinner-reverse 1s linear infinite;
    opacity: 0.4;
    color: var(--way-orange);
}

@keyframes spinner-reverse {
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

.way-container2-text1 {
    color: var(--way-orange);
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}


@media (max-width: 991px) {

    
    .way-hero__row       { padding: 5rem 1rem 2rem; flex-direction: column; }
    .way-hero__logo-col  { justify-content: center; padding: 1rem; }
    .way-hero__logo      { max-width: 260px; }
    .way-hero__right     { padding: 0.5rem 1rem; }
    .way-hero__title     { font-size: 1.6rem; }
    .way-plantas-box__img { max-height: 240px; }

    
    .way-gallery { grid-template-columns: 1fr 30px 1.5fr; padding: 0 1rem; }

   
    .way-ficha__list li { font-size: 1.1rem; }

   
    .container6-background .row {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
        gap: 2rem;
    }
    .container6-background .col { width: 100%; max-width: 500px; }
    .container6-background iframe { width: 100%; }
}


@media (max-width: 575px) {

    
    .way-hero__row    { padding: 5.5rem 0.75rem 1.5rem; }
    .way-hero__logo   { max-width: 200px; }
    .way-hero__title  { font-size: 1.25rem; }
    .way-plantas-box__img { max-height: 200px; }
    .way-plantas-box__slide-title { font-size: 0.78rem; }

    
    .way-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 0 0.75rem;
    }

    .way-gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
    .way-gallery__thumb  { aspect-ratio: 1 / 1; }
    .way-gallery__sep    { display: none; }

    
    .way-ficha__list li { font-size: 1rem; }

    
    .way-pavimentos__slide { padding: 0 0.75rem; }
    .way-pavimentos__slogan { font-size: 1.1rem; }
    .way-pavimentos__img { max-height: 240px; }
    .way-pavimentos__list li { font-size: 0.82rem; }
}
