/* ===================================
   PÁGINA: BANHO E TOSA
   =================================== */

.bath-page {
    background: #d7efff;
}

/* HERO */
.bath-hero {
    background: #78b8d6;
    padding: 24px 0;
}

.bath-hero__inner {
    text-align: center;
}

.bath-hero__title {
    text-align: center;
    color: var(--color-white);
    font-family: var(--font-secondary)!important;
    font-weight: 700;
    font-size: 3.6em;
    line-height: 1.05;
}

.bath-hero__subtitle {
    margin: 6px 0 0 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
     font-family: var(--font-secondary)!important;
     font-size: 1.6em;
    letter-spacing: 0.2px;
}

/* CONTEÚDO */
.bath-content {
    background: #ffffff;
    padding: 26px 0 40px;
}

.bath-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
}

@media (min-width: 980px) {
    .bath-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 34px;
    }
}

/* TEXTO */
.bath-text {
    color: var(--color-dark);
}

.bath-intro {
    margin: 0 0 18px;
    color: var(--color-primary-orange);
    line-height: 1.85;
    font-weight: 600;
    max-width: 680px;
}

.bath-intro strong {
    font-weight: 900;
}

.bath-section-title {
    margin: 12px 0 14px;
    color: var(--color-primary-orange);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 900;
}

/* LISTA */
.bath-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 16px;
    max-width: 680px;
}

.bath-list li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    color: var(--color-primary-orange);
    font-weight: 700;
    line-height: 1.6;
}

.bath-check {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(232, 114, 77, 0.12);
    color: var(--color-primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-top: 2px;
}

/* QUOTE */
.bath-quote {
    display: inline-block;
    background: #b7d354;
    color: #fff;
    font-weight: 900;
    line-height: 1.18;
    padding: 26px 26px;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
    margin: 10px 0 18px;
    font-size:2.1rem;
    font-family: var(--font-secondary);
    letter-spacing:4px;
}

.bath-cta {
    margin: 0;
    color: var(--color-primary-orange);
    font-weight: 700;
    line-height: 1.7;
    max-width: 680px;
}

/* ===================================
   COLUNA DE MÍDIA
   =================================== */
.bath-media {
    position: relative;
    min-height: 860px;
    overflow: visible;
}

.bath-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.95;
    z-index: 5;
}

.bath-svg {
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.06));
}

.bubble-1 {
    width: 100px;
    top: 470px;
    right: 42px;
    opacity: 0.75;
}

.bubble-2 {
    width: 130px;
    top: 710px;
    right: 270px;
    opacity: 0.75;
}

.bubble-3 {
    width: 100px;
    top: 100px;
    right: 400px;
    opacity: 0.95;
}

.bubble-4 {
    width: 78px;
    top: 750px;
    right: 34px;
    opacity: 0.85;
}

.bubble-5 {
    width: 200px;
    top: 0px;
    right: 10px;
    opacity: 0.75;
}

/* ===================================
   ✅ FOTOS CIRCULARES 
   =================================== */
.bath-photo {
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
    z-index: 2;
}

.bath-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bath-photo--main {
    width: 340px;
    height: 340px;
    top: 120px;
    right: 100px;
}

.bath-photo--room {
    width: 400px;
    height: 400px;
    top: 540px;
    right: 70px;
    opacity: 0.98;
}

@media (max-width: 520px) {
    .bath-photo--main {
        width: 300px;
        height: 300px;
        top: 170px;
        right: 50%;
        transform: translateX(50%);
    }

    .bath-photo--room {
        width: 250px;
        height: 250px;
        top: 520px;
        right: 50%;
        transform: translateX(50%);
    }
}