
/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

:root {
    --wine: #b34f60;
    --wine-dark: #983e50;
    --wine-light: #d97787;
    --pink-bg: #f9e8eb;
    --pink: #f5dadd;
    --pink-light: #fff7f8;
    --border: #ddaeb6;
    --text: #3f3437;
    --muted: #7f696e;
    --white: #ffffff;
}

/* =========================================================
   BODY
========================================================= */

body {
    min-height: 100vh;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, #f9edf0 0%, #f5e3e7 50%, #f9edf0 100%);
    padding: 20px;
}

/* =========================================================
   PÁGINA
========================================================= */

.page {
    width: 100%;
    max-width: 1120px;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
    background: #fffafa;
    border: 1px solid #e6cdd1;
    box-shadow: 0 15px 45px rgba(150, 70, 85, .14);
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    height: 88px;
    display: flex;
    align-items: center;
    padding: 0 45px;
    background: linear-gradient(90deg, #fae7e8, #f9e9ea);
    border-bottom: 1px solid #f0d6d9;
}

.logo {
    width: 240px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #332a2d;
}

.logo img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.menu {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    color: #634f53;
    font-size: 15px;
    transition: .2s ease;
}

.menu a span {
    color: var(--wine);
    font-size: 18px;
}

.menu a:hover,
.menu a.active {
    background: #f2c7cb;
    color: var(--wine-dark);
}

.menu a.active {
    font-weight: 600;
}

.login {
    padding: 11px 28px;
    border: 1px solid var(--wine);
    border-radius: 7px;
    background: transparent;
    color: #754c54;
    font-size: 14px;
    cursor: pointer;
    transition: .2s ease;
    text-decoration: none;
}

.login:hover {
    background: var(--wine);
    color: white;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 490px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 55px 60px 40px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 75% 45%, #f7dce0 0%, #fdf1f2 42%, #fffafa 75%);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 25px;
}

.hero-content h1 {
    font-family: Georgia, serif;
    font-size: clamp(42px, 4vw, 58px);
    line-height: .98;
    letter-spacing: -1.5px;
    color: #30292b;
}

.hero-content h1 span {
    color: var(--wine);
}

.hero-description {
    max-width: 470px;
    margin-top: 25px;
    color: #66575a;
    font-size: 17px;
    line-height: 1.55;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 28px;
}

.hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 26px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
    text-decoration: none;
}

.btn-primary {
    border: 1px solid var(--wine);
    background: var(--wine);
    color: white;
}

.btn-primary:hover {
    background: var(--wine-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--wine);
    background: white;
    color: var(--wine);
}

.btn-secondary:hover {
    background: #fcecef;
    transform: translateY(-2px);
}

.trust {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 38px;
}

.avatars {
    display: flex;
}

.avatars span {
    width: 43px;
    height: 43px;
    margin-right: -9px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e9c2c7;
    border: 3px solid white;
    font-size: 20px;
}

.trust strong {
    display: block;
    font-size: 16px;
    color: #3d3436;
}

.trust small {
    display: block;
    margin-top: 4px;
    color: #806d71;
    font-size: 13px;
}

/* =========================================================
   HERO IMAGEM
========================================================= */

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pink-circle {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: radial-gradient(circle, #f5d9dd, #f9e8ea);
    right: 15px;
    top: 20px;
}

.hero-image > img {
    position: relative;
    z-index: 2;
    width: 430px;
    max-width: 100%;
    height: 380px;
    object-fit: contain;
    filter: saturate(.95) contrast(.98);
    mix-blend-mode: multiply;
}

.floating-heart {
    position: absolute;
    z-index: 4;
    color: #c66d7a;
    font-size: 58px;
    line-height: 1;
}

.heart-1 {
    left: 15px;
    top: 55px;
    transform: rotate(-15deg);
}

.heart-2 {
    right: 10px;
    top: 45px;
    transform: rotate(12deg);
}

.paw {
    position: absolute;
    z-index: 4;
    color: var(--wine);
    font-size: 38px;
}

.paw-1 {
    left: 5px;
    bottom: 100px;
    transform: rotate(-15deg);
}

.paw-2 {
    right: 20px;
    top: 165px;
    transform: rotate(15deg);
}

.safe-box {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: 92%;
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 13px 18px;
    border-radius: 12px;
    background: rgba(255,255,255,.95);
    border: 1px solid #f0dce0;
    box-shadow: 0 7px 20px rgba(150,70,85,.12);
}

.safe-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--wine);
    color: white;
    font-size: 24px;
}

.safe-box strong {
    display: block;
    color: #433638;
    font-size: 14px;
}

.safe-box p {
    margin-top: 4px;
    color: #7d6a6f;
    font-size: 12px;
}

/* =========================================================
   SERVIÇOS
========================================================= */

.services {
    padding: 38px 55px 45px;
    background: linear-gradient(180deg, #fceff1, #f9e8eb);
}

.services h2 {
    margin-bottom: 30px;
    text-align: center;
    color: var(--wine);
    font-family: Georgia, serif;
    font-size: 34px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

.service-card {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 25px 25px;
    border: 1px solid #ddaeb6;
    border-radius: 12px;
    background: rgba(255,255,255,.6);
    box-shadow: 0 5px 15px rgba(150,70,85,.04);
    transition: .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(150,70,85,.12);
}

.service-icon {
    width: 75px;
    height: 75px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--wine);
    color: white;
    font-size: 34px;
}

.service-card h3 {
    color: var(--wine);
    font-size: 21px;
    margin-bottom: 14px;
}

.service-card p {
    color: #866d73;
    font-size: 16px;
    line-height: 1.55;
}

.card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    margin-top: auto;
    border: 1px solid #d98e99;
    border-radius: 7px;
    background: #fce9ec;
    color: var(--wine);
    font-size: 14px;
    cursor: pointer;
    transition: .2s ease;
    text-decoration: none;
}

.card-button:hover {
    background: var(--wine);
    color: white;
}

/* =========================================================
   WHY
========================================================= */

.why {
    padding: 5px 55px 45px;
    background: #f9e8eb;
}

.why-box {
    max-width: 1000px;
    margin: auto;
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr auto;
    align-items: center;
    gap: 30px;
    border-radius: 14px;
    background: #fcecef;
}

.why > h2 {
    margin-bottom: 20px;
    text-align: center;
    color: var(--wine);
    font-size: 19px;
    font-weight: 500;
}

.why-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.why-icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e9a7b1;
    color: white;
    font-size: 25px;
}

.why-item h3 {
    color: #3e3437;
    font-size: 17px;
    line-height: 1.15;
    margin-bottom: 8px;
}

.why-item p {
    color: #705e62;
    font-size: 13px;
    line-height: 1.45;
}

.review-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: 0;
    border-radius: 7px;
    background: #df6578;
    color: white;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: .2s ease;
    text-decoration: none;
}

.review-button:hover {
    background: var(--wine-dark);
    transform: translateY(-2px);
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    min-height: 230px;
    margin: 0 20px 20px;
    padding: 30px 35px;
    display: grid;
    grid-template-columns: 160px 1.05fr 1.15fr .95fr;
    gap: 20px;
    align-items: center;
    border-radius: 14px;
    background: linear-gradient(110deg, #ae4e60, #b85566);
    color: white;
}

.pet-circle {
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: #e4aeb7;
}

.pet-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-column {
    min-height: 150px;
    padding-left: 25px;
    border-left: 1px solid rgba(255,255,255,.6);
}

.footer-column h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.phone {
    display: block;
    margin-top: 18px;
    font-size: 14px;
}

.footer-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    border: 1px solid white;
    border-radius: 6px;
    background: transparent;
    color: white;
    font-size: 13px;
    cursor: pointer;
    transition: .2s ease;
    text-decoration: none;
}

.footer-button:hover {
    background: white;
    color: var(--wine);
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.socials a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid white;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: .2s ease;
}

.socials a:hover {
    background: white;
    color: var(--wine);
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 850px) {
    body {
        padding: 0;
    }

    .navbar {
        height: auto;
        min-height: 65px;
        padding: 10px 18px;
    }

    .logo {
        width: 150px;
    }

    .logo img {
        width: 60px;
        height: auto;
    }

    .menu {
        gap: 2px;
    }

    .menu a {
        padding: 7px 10px;
        font-size: 12px;
    }

    .menu a span {
        font-size: 14px;
    }

    .login {
        padding: 7px 12px;
        font-size: 12px;
    }

    .hero {
        padding: 35px 30px;
        grid-template-columns: 1fr 1fr;
        min-height: 330px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-buttons a {
        height: 40px;
        padding: 0 16px;
        font-size: 12px;
    }

    .hero-image > img {
        height: 280px;
        width: 100%;
    }

    .pink-circle {
        width: 260px;
        height: 260px;
    }

    .safe-box {
        width: 95%;
        min-height: 60px;
        padding: 10px 14px;
        gap: 10px;
    }

    .safe-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .safe-box strong {
        font-size: 12px;
    }

    .safe-box p {
        font-size: 10px;
    }

    .services {
        padding: 25px 25px;
    }

    .services h2 {
        font-size: 26px;
    }

    .service-grid {
        gap: 15px;
    }

    .service-card {
        min-height: 280px;
        padding: 15px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 17px;
    }

    .service-card p {
        font-size: 13px;
    }

    .card-button {
        height: 36px;
        font-size: 12px;
    }

    .why {
        padding: 5px 20px 25px;
    }

    .why-box {
        gap: 15px;
        padding: 18px;
        grid-template-columns: 1fr 1fr 1fr auto;
    }

    .why-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 18px;
    }

    .why-item h3 {
        font-size: 13px;
    }

    .why-item p {
        font-size: 11px;
    }

    .review-button {
        padding: 10px 14px;
        font-size: 11px;
    }

    .footer {
        min-height: 160px;
        margin: 0 10px 10px;
        padding: 20px;
        grid-template-columns: 100px 1.05fr 1.15fr .95fr;
        gap: 12px;
    }

    .pet-circle {
        width: 80px;
        height: 80px;
    }

    .footer-column {
        min-height: 100px;
        padding-left: 15px;
    }

    .footer-column h3 {
        font-size: 14px;
    }

    .footer-column p {
        font-size: 11px;
    }

    .phone {
        font-size: 11px;
    }

    .footer-button {
        font-size: 10px;
        padding: 7px 12px;
    }

    .socials a {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .navbar {
        height: auto;
        padding: 8px 12px;
        flex-wrap: wrap;
        gap: 6px;
    }

    .logo {
        width: auto;
    }

    .logo img {
        width: 45px;
    }

    .menu {
        width: 100%;
        order: 3;
        justify-content: center;
        flex-wrap: wrap;
        gap: 3px;
    }

    .menu a {
        padding: 5px 8px;
        font-size: 10px;
        gap: 4px;
    }

    .menu a span {
        font-size: 10px;
    }

    .login {
        padding: 5px 10px;
        font-size: 10px;
        margin-left: auto;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 20px 18px 30px;
        min-height: auto;
    }

    .hero-content {
        padding-top: 5px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-description {
        font-size: 12px;
        margin-top: 12px;
    }

    .hero-buttons {
        gap: 10px;
        margin-top: 15px;
        flex-wrap: wrap;
    }

    .hero-buttons a {
        height: 36px;
        padding: 0 14px;
        font-size: 11px;
    }

    .trust {
        margin-top: 20px;
        gap: 10px;
    }

    .avatars span {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-right: -6px;
    }

    .trust strong {
        font-size: 13px;
    }

    .trust small {
        font-size: 10px;
    }

    .hero-image {
        margin-top: 20px;
        min-height: 220px;
    }

    .hero-image > img {
        height: 200px;
        width: 100%;
        object-fit: contain;
    }

    .pink-circle {
        width: 180px;
        height: 180px;
        right: 10px;
        top: 10px;
    }

    .floating-heart {
        font-size: 28px;
    }

    .heart-1 {
        left: 5px;
        top: 20px;
    }

    .heart-2 {
        right: 5px;
        top: 15px;
    }

    .paw {
        font-size: 18px;
    }

    .paw-1 {
        left: 0px;
        bottom: 50px;
    }

    .paw-2 {
        right: 5px;
        top: 80px;
    }

    .safe-box {
        bottom: 4px;
        width: 96%;
        min-height: 44px;
        padding: 8px 12px;
        gap: 8px;
        border-radius: 8px;
    }

    .safe-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .safe-box strong {
        font-size: 10px;
    }

    .safe-box p {
        font-size: 8px;
        margin-top: 2px;
    }

    .services {
        padding: 15px 12px 20px;
    }

    .services h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 350px;
        margin: auto;
    }

    .service-card {
        min-height: 200px;
        padding: 15px 18px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 10px;
    }

    .service-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 12px;
    }

    .card-button {
        height: 34px;
        font-size: 11px;
        max-width: 200px;
    }

    .why {
        padding: 5px 12px 20px;
    }

    .why > h2 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .why-box {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }

    .why-item {
        gap: 10px;
    }

    .why-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 16px;
    }

    .why-item h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .why-item p {
        font-size: 11px;
    }

    .review-button {
        padding: 10px 16px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }

    .footer {
        grid-template-columns: 1fr 1fr;
        margin: 0 5px 5px;
        padding: 15px;
        gap: 10px;
        min-height: auto;
    }

    .footer-pet {
        display: none;
    }

    .footer-column {
        min-height: auto;
        padding-left: 0;
        border-left: none;
        padding: 0;
    }

    .footer-column h3 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .footer-column p {
        font-size: 10px;
        line-height: 1.4;
    }

    .phone {
        font-size: 10px;
        margin-top: 8px;
    }

    .footer-button {
        font-size: 9px;
        padding: 5px 10px;
        margin-top: 8px;
    }

    .socials {
        gap: 6px;
        margin-top: 8px;
    }

    .socials a {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
}