*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f3f4f6;
    color:#1f2937;
}

a{
    text-decoration:none;
}

/* LAYOUT */
.layout{
    display:flex;
    min-height:100vh;
}

/* SIDEBAR */
.sidebar{
    width:250px;
    background:#111827;
    color:#fff;
    padding:22px 18px;
    flex-shrink:0;
}

.brand{
    font-size:22px;
    font-weight:700;
    margin-bottom:28px;
}

.sidebar nav a{
    display:block;
    color:#cbd5e1;
    padding:12px 14px;
    border-radius:10px;
    margin-bottom:8px;
    transition:0.2s ease;
}

.sidebar nav a:hover,
.sidebar nav a.active{
    background:#1f2937;
    color:#fff;
}

.logout{
    margin-top:16px;
    color:#fca5a5 !important;
}

/* CONTENT */
.content{
    flex:1;
    padding:28px;
}

.content h1{
    font-size:38px;
    margin-bottom:8px;
}

.top h1{
    margin-bottom:20px;
}

/* TEXTOS */
.muted{
    color:#6b7280;
    font-size:14px;
    line-height:1.5;
}

/* CARDS GERAIS */
.card,
.panel,
.form-card,
.resume-card,
.agenda-dia{
    background:#fff;
    border-radius:16px;
    box-shadow:0 8px 24px rgba(0,0,0,0.06);
}

/* DASHBOARD */
.cards{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:16px;
    margin-bottom:24px;
}

.card{
    padding:20px;
}

.card span{
    display:block;
    color:#6b7280;
    font-size:14px;
    margin-bottom:8px;
}

.card strong{
    display:block;
    font-size:28px;
    color:#111827;
}

.panel{
    padding:20px;
    margin-bottom:20px;
}

.panel-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
    padding-bottom:12px;
    border-bottom:1px solid #eceff3;
}

.toggle-btn{
    background:#e5e7eb;
    border:none;
    padding:8px 12px;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
    color:#111827;
    transition:0.2s ease;
}

.toggle-btn:hover{
    background:#d1d5db;
}

.row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    padding:14px 0;
    border-bottom:1px solid #f1f5f9;
}

.row:last-child{
    border-bottom:none;
}

.info{
    flex:1;
    font-size:14px;
    line-height:1.45;
}

.info strong{
    display:block;
    color:#111827;
    margin-bottom:2px;
}

.info span{
    color:#4b5563;
}

.info small{
    color:#9ca3af;
}

.pet-tutor{
    font-size:14px;
    line-height:1.5;
    color:#374151;
    margin-top:4px;
}

.done{
    opacity:0.88;
}

.valor{
    font-weight:700;
    color:#111827;
    white-space:nowrap;
}

.actions{
    display:flex;
    gap:8px;
    flex-shrink:0;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:38px;
    height:38px;
    padding:0 12px;
    border-radius:10px;
    color:#fff;
    font-size:14px;
    font-weight:700;
}

.ok{
    background:#16a34a;
}

.cancel{
    background:#dc2626;
}

.view{
    background:#2563eb;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#2563eb;
    color:#fff;
    padding:12px 18px;
    border:none;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
    transition:0.2s ease;
}

.btn-primary:hover{
    background:#1d4ed8;
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#e5e7eb;
    color:#111827;
    padding:12px 18px;
    border-radius:12px;
    font-weight:600;
    transition:0.2s ease;
}

.btn-secondary:hover{
    background:#d1d5db;
}

/* STATUS */
.status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
    padding:6px 10px;
    border-radius:999px;
    white-space:nowrap;
}

.status.Agendado,
.Agendado{
    background:#fef3c7;
    color:#92400e;
}

.status.Concluído,
.Concluído{
    background:#dcfce7;
    color:#166534;
}

.status.Cancelado,
.Cancelado{
    background:#fee2e2;
    color:#991b1b;
}

/* AGENDA COMPACTA */
.agenda-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.agenda-dia{
    border:1px solid #e5e7eb;
    overflow:hidden;
}

.agenda-dia summary{
    list-style:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    padding:16px 18px;
    cursor:pointer;
    background:#f9fafb;
    font-size:16px;
    font-weight:600;
    color:#111827;
}

.agenda-dia summary::-webkit-details-marker{
    display:none;
}

.agenda-dia summary:hover{
    background:#f3f4f6;
}

.agenda-dia[open] summary{
    border-bottom:1px solid #eceff3;
}

.agenda-dia summary span{
    font-size:13px;
    color:#6b7280;
    font-weight:500;
}

.agenda-items{
    padding:10px 16px 16px 16px;
}

.agenda-item{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
    padding:12px;
    background:#f9fafb;
    border:1px solid #eef2f7;
    border-radius:12px;
    margin-bottom:10px;
}

.agenda-item:last-child{
    margin-bottom:0;
}

.hora{
    min-width:56px;
    font-weight:700;
    color:#111827;
    font-size:14px;
}

.pet{
    color:#111827;
}

.tutor{
    color:#374151;
}

/* NOVO AGENDAMENTO */
.page-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:16px;
    margin-bottom:22px;
    padding-bottom:8px;
}

.page-header h1{
    font-size:34px;
    margin-bottom:6px;
    color:#111827;
}

.agendamento-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
}

.form-card,
.resume-card{
    padding:24px;
}

.form-card{
    border:1px solid #edf1f5;
}

.resume-card{
    border:1px solid #edf1f5;
    position:sticky;
    top:20px;
    height:fit-content;
}

.section-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:4px 0 14px;
    padding-bottom:8px;
    border-bottom:1px solid #eceff3;
}

.section-title h2{
    font-size:17px;
    font-weight:700;
    letter-spacing:0.2px;
    color:#111827;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:16px;
    margin-bottom:22px;
}

.form-grid-1{
    grid-template-columns:1fr;
}

.field{
    display:flex;
    flex-direction:column;
}

.field label{
    font-weight:600;
    font-size:14px;
    margin-bottom:6px;
    color:#374151;
}

.field input,
.field select,
.field textarea{
    width:100%;
    border:1px solid #dbe2ea;
    background:#f9fbfd;
    border-radius:12px;
    padding:12px 14px;
    font-size:14px;
    outline:none;
    transition:0.2s ease;
    color:#111827;
}

.field input::placeholder{
    color:#9ca3af;
}

.field input[type="date"],
.field input[type="time"]{
    min-height:48px;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
    border-color:#2563eb;
    background:#fff;
    box-shadow:0 0 0 3px rgba(37,99,235,0.08);
}

.option-list{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:22px;
}

.option-card{
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:12px;
    align-items:center;
    background:#f9fbfd;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:14px;
    cursor:pointer;
    transition:0.2s ease;
    position:relative;
    overflow:hidden;
}

.option-card:hover{
    border-color:#cbd5e1;
    background:#ffffff;
    transform:translateY(-1px);
    box-shadow:0 8px 18px rgba(0,0,0,0.05);
}

.option-card input{
    margin-top:2px;
}

.option-card input[type="radio"],
.option-card input[type="checkbox"]{
    width:18px;
    height:18px;
    accent-color:#2563eb;
}

.option-card strong{
    display:block;
    color:#111827;
    margin-bottom:4px;
    font-size:15px;
}

.option-card span{
    display:block;
    font-size:13px;
    color:#6b7280;
    line-height:1.4;
}

.option-card b{
    color:#1d4ed8;
    background:#eef4ff;
    padding:8px 10px;
    border-radius:10px;
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
}

.option-text{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.form-actions{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    margin-top:10px;
    padding-top:10px;
    border-top:1px solid #eceff3;
}

/* RESUMO */
.resume-card h3{
    margin-top:0;
    margin-bottom:8px;
    font-size:22px;
    color:#111827;
    display:flex;
    align-items:center;
    gap:8px;
}

.resume-box{
    background:#f9fbfd;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:14px;
    margin-top:14px;
    transition:0.2s ease;
}

.resume-box:hover{
    background:#ffffff;
    border-color:#dbe2ea;
}

.resume-box span{
    display:block;
    font-weight:700;
    color:#111827;
    margin-bottom:8px;
}

.resume-box ul{
    margin:0;
    padding-left:18px;
    color:#4b5563;
}

.resume-box li{
    margin-bottom:6px;
    font-size:14px;
    line-height:1.45;
}

.resume-box li::marker{
    color:#2563eb;
}

/* TABELAS / LISTAS */
.table{
    padding:0;
}

/* MOBILE */
@media (max-width: 1100px){
    .cards{
        grid-template-columns:repeat(2, 1fr);
    }

    .agendamento-layout{
        grid-template-columns:1fr;
    }

    .resume-card{
        position:static;
    }
}

@media (max-width: 900px){
    .layout{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
    }

    .content{
        padding:20px;
    }
}

@media (max-width: 640px){
    .content h1{
        font-size:30px;
    }

    .page-header h1{
        font-size:28px;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .form-actions{
        flex-direction:column;
    }

    .btn-secondary,
    .btn-primary{
        width:100%;
        text-align:center;
        min-height:46px;
    }

    .option-card{
        grid-template-columns:1fr;
    }

    .option-card b{
        width:max-content;
    }

    .row{
        flex-direction:column;
        align-items:flex-start;
    }

    .actions{
        width:100%;
    }

    .actions .btn{
        flex:1;
    }

    .agenda-item{
        flex-direction:column;
        align-items:flex-start;
    }

    .hora{
        min-width:auto;
    }

    .form-card,
    .resume-card{
        padding:18px;
        border-radius:14px;
    }

    .agenda-dia summary{
        flex-direction:column;
        align-items:flex-start;
    }
}
.option-card .field{
    margin-top:10px;
}

.option-card input[type="number"]{
    max-width:140px;
}
.option-card-extra{
    grid-template-columns:1fr;
    align-items:stretch;
}

.extra-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
}

.extra-check{
    display:flex;
    align-items:flex-start;
    gap:12px;
    width:100%;
    cursor:pointer;
}

.extra-value{
    margin-top:12px;
}

.extra-value input{
    max-width:180px;
}
/* HOME PÚBLICA */
.site-home{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
    background:linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    overflow:hidden;
}

.site-home-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right, rgba(59,130,246,0.18), transparent 35%),
               radial-gradient(circle at bottom left, rgba(16,185,129,0.16), transparent 30%);
}

.site-home-content{
    position:relative;
    z-index:2;
    max-width:760px;
    text-align:center;
    color:#fff;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(8px);
    border-radius:24px;
    padding:42px 28px;
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.home-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.12);
    color:#fff;
    padding:10px 16px;
    border-radius:999px;
    font-weight:700;
    margin-bottom:18px;
}

.site-home-content h1{
    font-size:48px;
    line-height:1.1;
    margin-bottom:16px;
    color:#fff;
}

.site-home-content p{
    color:#e5e7eb;
    font-size:17px;
    line-height:1.6;
    margin-bottom:26px;
}

.home-actions{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.btn-dark{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#111827;
    color:#fff;
    padding:12px 18px;
    border:none;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
    transition:0.2s ease;
}

.btn-dark:hover{
    background:#000;
}

/* TELAS DE LOGIN/CADASTRO */
.auth-page{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
}

.auth-card{
    width:100%;
    max-width:460px;
    background:#fff;
    border-radius:20px;
    padding:28px;
    box-shadow:0 16px 40px rgba(0,0,0,0.08);
    border:1px solid #e5e7eb;
}

.auth-card h1{
    font-size:32px;
    margin-bottom:8px;
    color:#111827;
}

.auth-form{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:18px;
}

.auth-form .btn-primary,
.auth-form .btn-secondary{
    width:100%;
}

.auth-error{
    margin-top:12px;
    background:#fee2e2;
    color:#991b1b;
    padding:12px 14px;
    border-radius:12px;
    font-size:14px;
}

.auth-success{
    margin-top:12px;
    background:#dcfce7;
    color:#166534;
    padding:12px 14px;
    border-radius:12px;
    font-size:14px;
}

.auth-links{
    margin-top:16px;
    display:flex;
    gap:10px;
}

/* HOME ROSA */
.pink-theme{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
    overflow:hidden;

    background-image: url("fundo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* camada rosa por cima da imagem */
.site-home-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(253,242,248,0.85),
        rgba(252,231,243,0.88),
        rgba(251,207,232,0.82)
    );
}

.site-home-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.45), transparent 30%),
        radial-gradient(circle at bottom right, rgba(244,114,182,0.18), transparent 35%);
}

.soft-home-card{
    position:relative;
    z-index:2;
    max-width:760px;
    text-align:center;
    background:rgba(255,255,255,0.72);
    border:1px solid rgba(255,255,255,0.55);
    backdrop-filter:blur(10px);
    border-radius:28px;
    padding:46px 30px;
    box-shadow:0 18px 50px rgba(190, 24, 93, 0.10);
}

.home-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#be185d;
    border:1px solid #f9a8d4;
    padding:10px 18px;
    border-radius:999px;
    font-weight:700;
    margin-bottom:18px;
    font-size:14px;
}

.soft-home-card h1{
    font-size:48px;
    line-height:1.08;
    margin-bottom:16px;
    color:#831843;
}

.soft-home-card p{
    color:#6b7280;
    font-size:17px;
    line-height:1.7;
    margin-bottom:28px;
}

.soft-actions{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.btn-soft-primary,
.btn-soft-secondary,
.btn-soft-light{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 18px;
    border-radius:14px;
    font-weight:600;
    font-size:15px;
    transition:0.2s ease;
    min-width:150px;
}

.btn-soft-primary{
    background:#be185d;
    color:#fff;
    border:1px solid #be185d;
    box-shadow:0 10px 22px rgba(190, 24, 93, 0.18);
}

.btn-soft-primary:hover{
    background:#9d174d;
    border-color:#9d174d;
    transform:translateY(-1px);
}

.btn-soft-secondary{
    background:#fff;
    color:#9d174d;
    border:1px solid #f9a8d4;
}

.btn-soft-secondary:hover{
    background:#fff1f7;
    transform:translateY(-1px);
}

.btn-soft-light{
    background:#fdf2f8;
    color:#831843;
    border:1px solid #fbcfe8;
}

.btn-soft-light:hover{
    background:#fce7f3;
    transform:translateY(-1px);
}

/* LOGIN ROSA */
.auth-pink{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:linear-gradient(135deg, #fff1f7 0%, #fdf2f8 50%, #fce7f3 100%);
}

.auth-soft-card{
    width:100%;
    max-width:460px;
    background:rgba(255,255,255,0.82);
    border-radius:24px;
    padding:30px;
    box-shadow:0 18px 45px rgba(190,24,93,0.10);
    border:1px solid #fbcfe8;
    backdrop-filter:blur(8px);
}

.auth-soft-card h1{
    font-size:34px;
    margin-bottom:8px;
    color:#831843;
}

.btn-full{
    width:100%;
}

.auth-form{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:18px;
}

.auth-error{
    margin-top:12px;
    background:#fee2e2;
    color:#991b1b;
    padding:12px 14px;
    border-radius:12px;
    font-size:14px;
}

.auth-success{
    margin-top:12px;
    background:#dcfce7;
    color:#166534;
    padding:12px 14px;
    border-radius:12px;
    font-size:14px;
}

@media (max-width: 640px){
    .soft-home-card{
        padding:30px 20px;
        border-radius:22px;
    }

    .soft-home-card h1{
        font-size:34px;
    }

    .soft-home-card p{
        font-size:15px;
    }

    .soft-actions{
        flex-direction:column;
    }

    .btn-soft-primary,
    .btn-soft-secondary,
    .btn-soft-light{
        width:100%;
    }

    .auth-soft-card{
        padding:22px;
    }

    .auth-soft-card h1{
        font-size:28px;
    }
}
/* ÁREA DO CLIENTE - PETS */
.pet-cards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:20px;
}

.pet-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #f1d4e3;
    box-shadow:0 10px 26px rgba(190,24,93,0.08);
}

.pet-card-photo-wrap{
    width:100%;
    height:220px;
    background:#fde7f0;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.pet-card-photo{
    width:100%;
    height:100%;
    object-fit:cover;
}

.pet-card-placeholder{
    font-size:60px;
    color:#be185d;
}

.pet-card-body{
    padding:18px;
}

.pet-card-body h3{
    font-size:22px;
    color:#831843;
    margin-bottom:10px;
}

.pet-card-body p{
    margin-bottom:8px;
    color:#4b5563;
    font-size:14px;
    line-height:1.5;
}

.pet-card-actions{
    display:flex;
    gap:10px;
    margin-top:16px;
    flex-wrap:wrap;
}

@media (max-width: 640px){
    .pet-card-photo-wrap{
        height:180px;
    }

    .pet-card-actions{
        flex-direction:column;
    }

    .pet-card-actions a{
        width:100%;
    }
}
/* CLIENTES & PETS - ADMIN */
.pet-cards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:20px;
}

.pet-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #f1d4e3;
    box-shadow:0 10px 26px rgba(190,24,93,0.08);
}

.pet-card-photo-wrap{
    width:100%;
    height:220px;
    background:#fde7f0;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.pet-card-photo{
    width:100%;
    height:100%;
    object-fit:cover;
}

.pet-card-placeholder{
    font-size:60px;
    color:#be185d;
}

.pet-card-body{
    padding:18px;
}

.pet-card-body h3{
    font-size:22px;
    color:#831843;
    margin-bottom:10px;
}

.pet-card-body p{
    margin-bottom:8px;
    color:#4b5563;
    font-size:14px;
    line-height:1.5;
}

.pet-card-actions{
    display:flex;
    gap:10px;
    margin-top:16px;
    flex-wrap:wrap;
}

.option-card-extra{
    grid-template-columns:1fr;
    align-items:stretch;
}

.extra-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
}

.extra-check{
    display:flex;
    align-items:flex-start;
    gap:12px;
    width:100%;
    cursor:pointer;
}

.extra-value{
    margin-top:12px;
}

.extra-value input{
    max-width:180px;
}

@media (max-width: 640px){
    .pet-card-photo-wrap{
        height:180px;
    }

    .pet-card-actions{
        flex-direction:column;
    }

    .pet-card-actions a{
        width:100%;
    }
}
/* FUNDO LOGIN */
.login-bg{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;

    background-image:url("login.png");
    background-size:cover;
    background-position:center;
}

/* FUNDO CRIAR CONTA */
.criar-bg{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    position:relative;

    background-image:url("criar.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* camada rosa suave SEM desfoque */
.criar-bg::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(190,24,93,0.18);
}

/* login também sem desfoque */
.login-bg::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(190,24,93,0.18);
}

/* card */
.auth-soft-card{
    position:relative;
    z-index:2;
}
/* CARD PET ESTILO CARTEIRINHA */
/* CARTEIRINHA DO PET */
.pet-id-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:20px;
}

.pet-card-id-wrap{
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* tamanho do card */
.pet-card-id{
    width:100%;
    max-width:430px;

    aspect-ratio: 16 / 10;

    background-image:url("replace.png");
    background-size:100% 100%;
    background-position:center;
    background-repeat:no-repeat;

    border-radius:24px;
    position:relative;
    overflow:hidden;
}

/* caixa das informações bonita e mais fina */
.pet-id-info{
    position:absolute;

    top:61%;
    left:50%;
    transform:translateX(-50%);

    width:70%;          /* mais larga */
    padding:8px 18px;   /* menos altura */

    border-radius:12px;

    background:#ffffff;
    border:1px solid #f5c2d8;

    box-shadow:0 6px 14px rgba(0,0,0,0.08);
}

.pet-id-row{
    display:grid;
    grid-template-columns:55px 1fr;
    gap:8px;
    margin-bottom:2px;
    align-items:center;
}

.pet-id-label{
    font-size:9px;
    color:#be185d; /* rosa da marca */
    font-weight:600;
}

.pet-id-value{
    font-size:10px;
    line-height:1.05;
    color:#374151; /* cinza profissional */
    font-weight:600;
}

.pet-id-divider{
    border:none;
    border-top:1px solid #f3b5d0;
    margin:0.3em 0;
}
/* botões */
.pet-id-actions{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    max-width:380px;
}

.pet-id-btn{
    flex:1;
    padding:10px 12px;
    border-radius:12px;
    text-align:center;
    font-weight:600;
    font-size:13px;
    text-decoration:none;
    transition:0.2s ease;
}

.pet-id-btn-primary{
    background:#be185d;
    color:#fff;
    border:1px solid #be185d;
}

.pet-id-btn-primary:hover{
    background:#9d174d;
}

.pet-id-btn-secondary{
    background:#fff;
    color:#be185d;
    border:1px solid #f3b5d0;
}

.pet-id-btn-secondary:hover{
    background:#fff1f7;
}

/* mobile */
@media (max-width:640px){

    .pet-card-id{
        max-width:100%;
        height:200px;
    }

    .pet-id-info{
        width:65%;
        left:14px;
        bottom:12px;
        padding:8px 10px;
    }

    .pet-id-label{
        font-size:9px;
    }

    .pet-id-value{
        font-size:10px;
    }

    .pet-id-actions{
        flex-direction:column;
        max-width:100%;
    }

    .pet-id-btn{
        width:100%;
    }
}
@media (max-width: 640px){

    .pet-card-id{
        max-width:100%;
        height:auto;
        aspect-ratio:16 / 10;
        background-size:100% 100%;
    }

.pet-id-info{
    top:61%;
    left:50%;
    transform:translateX(-50%);

    width:60%;      /* mais horizontal no celular também */

    padding:4px 8px;

    border-radius:10px;
}

.pet-id-row{
    grid-template-columns:44px 1fr;
    gap:4px;
}

.pet-id-label{
    color:#c2185b; /* rosa mais refinado */
}

.pet-id-value{
    color:#1f2937; /* cinza premium */
}

    .pet-id-divider{
        margin:3px 0;
    }

    .pet-id-actions{
        max-width:100%;
        flex-direction:column;
    }

    .pet-id-btn{
        width:100%;
    }
}
/* =========================
   HOME PRINCIPAL PROFISSIONAL
========================= */
.home-publica{
    min-height:100vh;
    background:#fff8fb;
}

.home-topbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    position:absolute;
    top:0;
    left:0;
    z-index:20;
}

.home-logo span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.88);
    color:#9d174d;
    border:1px solid #f9c5dd;
    padding:10px 16px;
    border-radius:999px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(190,24,93,0.08);
}

.home-top-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.home-hero{
    min-height:88vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:120px 24px 70px;

    background-image:url("fundo.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.home-hero-overlay{
    display:none;
}

.home-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    text-align:center;
    background:rgba(255,255,255,0.68);
    border:1px solid rgba(255,255,255,0.6);
    backdrop-filter:blur(10px);
    border-radius:30px;
    padding:52px 34px;
    box-shadow:0 18px 50px rgba(190,24,93,0.10);
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:999px;
    background:#fff;
    color:#be185d;
    border:1px solid #f9c5dd;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.home-hero-content h1{
    font-size:52px;
    line-height:1.08;
    color:#831843;
    margin-bottom:18px;
}

.home-hero-content p{
    font-size:18px;
    line-height:1.7;
    color:#6b7280;
    max-width:720px;
    margin:0 auto 28px;
}

.home-hero-buttons{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.home-servicos{
    padding:70px 28px;
    background:#fff;
}

.home-section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 34px;
}

.home-section-title span{
    display:inline-block;
    color:#be185d;
    font-weight:700;
    font-size:14px;
    margin-bottom:10px;
}

.home-section-title h2{
    font-size:38px;
    color:#831843;
    margin-bottom:12px;
}

.home-section-title p{
    color:#6b7280;
    font-size:16px;
    line-height:1.7;
}

.servicos-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:24px;
    max-width:1200px;
    margin:0 auto;
}

.servico-card{
    background:#fff8fb;
    border:1px solid #f6d3e3;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 12px 28px rgba(190,24,93,0.06);
    transition:0.25s ease;
}

.servico-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 34px rgba(190,24,93,0.10);
}

.servico-imagem-wrap{
    width:100%;
    height:260px;
    background:#fde7f0;
    overflow:hidden;
}

.servico-imagem{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.servico-body{
    padding:22px;
}

.servico-body h3{
    font-size:24px;
    color:#9d174d;
    margin-bottom:10px;
}

.servico-body p{
    color:#6b7280;
    font-size:15px;
    line-height:1.7;
}

.home-chamada-final{
    padding:20px 24px 70px;
    background:#fff8fb;
}

.home-chamada-box{
    max-width:900px;
    margin:0 auto;
    text-align:center;
    background:#fff;
    border:1px solid #f6d3e3;
    border-radius:28px;
    padding:40px 24px;
    box-shadow:0 14px 32px rgba(190,24,93,0.07);
}

.home-chamada-box h2{
    font-size:36px;
    color:#831843;
    margin-bottom:14px;
}

.home-chamada-box p{
    color:#6b7280;
    font-size:16px;
    line-height:1.7;
    margin-bottom:22px;
}

@media (max-width: 1024px){
    .servicos-grid{
        grid-template-columns:1fr;
        max-width:700px;
    }
}

@media (max-width: 768px){
    .home-topbar{
        padding:16px 18px;
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .home-top-actions{
        width:100%;
    }

    .home-top-actions a{
        flex:1;
    }

    .home-hero{
        padding:140px 18px 60px;
    }

    .home-hero-content{
        padding:34px 20px;
        border-radius:24px;
    }

    .home-hero-content h1{
        font-size:34px;
    }

    .home-hero-content p{
        font-size:15px;
    }

    .home-section-title h2{
        font-size:28px;
    }

    .servico-imagem-wrap{
        height:220px;
    }

    .home-chamada-box h2{
        font-size:28px;
    }
}
/* PÁGINAS DE SERVIÇO */
.service-page{
    min-height:100vh;
    background:#fff8fb;
    padding:40px 20px 70px;
}

.service-container{
    max-width:1100px;
    margin:0 auto;
}

.service-topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-bottom:24px;
    flex-wrap:wrap;
}

.service-logo{
    font-size:22px;
    font-weight:700;
    color:#9d174d;
}

.service-hero{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:28px;
    align-items:center;
    margin-bottom:30px;
}

.service-image-card{
    background:#fff;
    border:1px solid #f3d8e5;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 14px 32px rgba(190,24,93,0.08);
}

.service-image{
    width:100%;
    height:100%;
    max-height:620px;
    object-fit:cover;
    display:block;
}

.service-info-card{
    background:#fff;
    border:1px solid #f3d8e5;
    border-radius:28px;
    padding:30px;
    box-shadow:0 14px 32px rgba(190,24,93,0.08);
}

.service-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:999px;
    background:#fff1f7;
    color:#be185d;
    border:1px solid #f9c5dd;
    font-weight:700;
    font-size:14px;
    margin-bottom:16px;
}

.service-info-card h1{
    font-size:40px;
    line-height:1.1;
    color:#831843;
    margin-bottom:16px;
}

.service-info-card p{
    color:#6b7280;
    font-size:16px;
    line-height:1.75;
    margin-bottom:18px;
}

.service-list-box{
    background:#fff7fb;
    border:1px solid #fbcfe8;
    border-radius:18px;
    padding:18px;
    margin:22px 0;
}

.service-list-box h3{
    margin:0 0 12px;
    color:#9d174d;
    font-size:20px;
}

.service-list-box ul{
    margin:0;
    padding-left:18px;
    color:#4b5563;
}

.service-list-box li{
    margin-bottom:8px;
    line-height:1.6;
    font-size:15px;
}

.service-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:20px;
}

.service-extra{
    background:#fff;
    border:1px solid #f3d8e5;
    border-radius:24px;
    padding:26px;
    box-shadow:0 12px 26px rgba(190,24,93,0.06);
}

.service-extra h2{
    color:#831843;
    font-size:28px;
    margin-bottom:14px;
}

.service-extra p{
    color:#6b7280;
    font-size:16px;
    line-height:1.75;
}

@media (max-width: 900px){
    .service-hero{
        grid-template-columns:1fr;
    }

    .service-info-card h1{
        font-size:30px;
    }
}
/* BOTÕES FLUTUANTES */
.floating-contact{
    position:fixed;
    bottom:22px;
    right:22px;
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index:999;
}

.float-btn{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 16px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    color:#fff;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    transition:0.2s ease;
}

.float-btn span{
    white-space:nowrap;
}

/* whatsapp */
.float-btn.whatsapp{
    background:#25D366;
}

.float-btn.whatsapp:hover{
    background:#1ebe5d;
    transform:translateY(-2px);
}

/* instagram */
.float-btn.instagram{
    background:linear-gradient(
        45deg,
        #f9ce34,
        #ee2a7b,
        #6228d7
    );
}

.float-btn.instagram:hover{
    transform:translateY(-2px);
}

/* MOBILE BOTÕES */
@media (max-width:640px){

    .float-btn span{
        display:none;
    }

    .float-btn{
        width:52px;
        height:52px;
        justify-content:center;
        font-size:20px;
        padding:0;
    }
}

/* =========================
   SIDEBAR
========================= */

.sidebar{
    width:250px;
    background:#111827;
    color:#fff;
    padding:22px 18px;
    flex-shrink:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.brand{
    font-size:22px;
    font-weight:700;
    margin-bottom:28px;
}

.sidebar nav{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.sidebar nav a{
    display:block;
    color:#cbd5e1;
    padding:12px 14px;
    border-radius:10px;
    transition:0.2s ease;
}

.sidebar nav a:hover,
.sidebar nav a.active{
    background:#1f2937;
    color:#fff;
}

.logout{
    margin-top:10px;
    color:#fca5a5 !important;
}

.config-link{
    display:block;
    color:#cbd5e1;
    padding:12px 14px;
    border-radius:10px;
    transition:0.2s ease;
}

.config-link:hover{
    background:#1f2937;
    color:#fff;
}

/* ÁREA INFERIOR */
.sidebar-bottom{
    margin-top:18px;

    display:flex;
    flex-direction:column;
    gap:8px;
}

/* =========================
   ADMIN SIDEBAR
========================= */

.admin-sidebar{
    min-height:100vh;
    overflow-y:auto;
}

.admin-nav{
    display:flex;
    flex-direction:column;
    gap:6px;
}

/* scrollbar */
.admin-sidebar::-webkit-scrollbar{
    width:6px;
}

.admin-sidebar::-webkit-scrollbar-thumb{
    background:rgba(255,255,255,0.14);
    border-radius:999px;
}

.admin-sidebar::-webkit-scrollbar-track{
    background:transparent;
}

/* =========================
   MOBILE
========================= */

@media (max-width:900px){

    .layout{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
        min-height:auto;
        padding:18px 16px;
    }

    .admin-sidebar{
        min-height:auto;
    }

    .brand{
        margin-bottom:18px;
        font-size:24px;
    }

    .sidebar nav{
        gap:8px;
    }

    .sidebar nav a{
        width:100%;
    }

    .sidebar-bottom{
        margin-top:16px;
    }

    .content{
        padding:20px;
    }
}