/* AdryNutri — Site institucional (full width + mobile) */
:root {
    --site-green: #2D4F1E;
    --site-green-dark: #1B3022;
    --site-green-heading: #1B3022;
    --site-green-soft: #E8F0E4;
    --site-green-muted: #4A5F48;
    --site-hero-bg: #F9F9F7;
    --site-hero-cream: #f5f3ed;
    --site-bg: #FFFFFF;
    --site-bg-alt: #F7F8F6;
    --site-text: #1A1A1A;
    --site-text-muted: #6B7280;
    --site-border: #E5E7EB;
    --site-radius: 12px;
    --site-radius-lg: 16px;
    --site-shadow: 0 4px 24px rgba(45, 79, 30, 0.08);
    --site-header-h: 72px;
    --site-pad: clamp(16px, 4vw, 56px);
    --site-pad-section: clamp(40px, 7vw, 88px);
    --site-content-max: 1440px;
    --site-mobile-bar-h: 72px;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body.site-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--site-bg);
    color: var(--site-text);
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    overflow-x: hidden;
}

/* Largura total — conteúdo com padding lateral fluido */
.site-container {
    width: 100%;
    max-width: var(--site-content-max);
    margin: 0 auto;
    padding-left: var(--site-pad);
    padding-right: var(--site-pad);
    box-sizing: border-box;
}

.site-container--wide {
    max-width: none;
}

.site-container--narrow {
    max-width: 640px;
}

.site-container--schedule {
    max-width: min(960px, 100%);
    width: 100%;
}

/* Header — mockup: logo | menu central | CTA */
.site-main {
    width: 100%;
    flex: 1;
}

.site-header {
    background: var(--site-bg);
    border-bottom: 1px solid rgba(45, 79, 30, 0.08);
    position: sticky;
    top: 0;
    z-index: 200;
    width: 100%;
}

.site-header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: var(--site-header-h);
    gap: 20px;
    width: 100%;
    max-width: var(--site-content-max);
    margin: 0 auto;
    padding-left: var(--site-pad);
    padding-right: var(--site-pad);
    box-sizing: border-box;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--site-green);
    font-weight: 800;
    letter-spacing: -0.02em;
    justify-self: start;
    z-index: 210;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.08;
}

.site-logo-text strong,
.site-logo-text span {
    display: block;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--site-green);
    letter-spacing: -0.01em;
}

.site-logo--footer {
    margin-bottom: 12px;
}

.site-logo--footer .site-logo-text strong,
.site-logo--footer .site-logo-text span {
    color: #fff;
}

.site-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: #7a9468;
}

.site-logo-icon--img {
    background: #7a9468;
}

.site-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.site-logo-icon svg {
    width: 34px;
    height: 34px;
    display: block;
}

.site-nav--desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vw, 40px);
    justify-self: center;
    grid-column: 2;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
    grid-column: 3;
}

.site-header-cta {
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
}

.site-nav a {
    color: var(--site-green-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
    padding-bottom: 6px;
}

.site-nav a:hover {
    color: var(--site-green);
}

.site-nav a.active {
    color: var(--site-green);
    font-weight: 600;
}

.site-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--site-green);
    border-radius: 2px;
}

.site-nav-drawer {
    display: none;
}

.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}

.site-btn-primary {
    background: var(--site-green);
    color: #fff;
}

.site-btn-primary:hover {
    background: var(--site-green-dark);
    color: #fff;
}

.site-btn-outline {
    background: #fff;
    color: var(--site-green);
    border: 2px solid var(--site-green);
}

.site-btn-outline:hover {
    background: var(--site-green-soft);
}

.site-btn-block {
    width: 100%;
}

.site-btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

/* Menu mobile */
.site-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 210;
    color: var(--site-text);
    margin-left: auto;
}

.site-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 198;
    opacity: 0;
    transition: opacity 0.25s;
}

.site-nav-overlay.visible {
    display: block;
    opacity: 1;
}

body.site-menu-open {
    overflow: hidden;
}

/* Navegação inferior mobile (detalhes em site-mobile.css) */
.site-bottom-nav {
    display: none;
}

/* Barra fixa mobile (legado — substituída por site-bottom-nav) */
.site-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 180;
    padding: 12px var(--site-pad);
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--site-border);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
}

/* Hero — duas colunas (texto + foto), estilo mockup */
.site-hero {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 7vw, 88px) 0 0;
    background: var(--site-hero-cream) !important;
    color: var(--site-text);
    box-sizing: border-box;
}

.site-hero-inner {
    width: 100%;
    max-width: var(--site-content-max);
    margin: 0 auto;
    padding-left: var(--site-pad);
    padding-right: var(--site-pad);
    box-sizing: border-box;
}

.site-hero-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    width: 100%;
}

.site-hero-grid--text-only {
    grid-template-columns: 1fr;
    max-width: 720px;
}

.site-hero-copy {
    padding-right: clamp(0px, 2vw, 16px);
    position: relative;
    z-index: 2;
}

.site-hero h1 {
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--site-green-heading);
    margin: 0 0 18px;
    letter-spacing: -0.03em;
}

.site-hero-lead {
    font-size: clamp(0.95rem, 1.6vw, 1.0625rem);
    color: #2d2d2d;
    margin-bottom: 28px;
    max-width: 440px;
    line-height: 1.6;
    font-weight: 400;
}

.site-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.site-btn-hero-primary {
    background: var(--site-green-heading);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: none;
    transition: background 0.2s;
}

.site-btn-hero-primary:hover {
    background: var(--site-green);
    color: #fff;
}

.site-btn-hero-secondary {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.site-btn-hero-secondary:hover {
    border-color: #c0c0c0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
}

.site-hero-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: clamp(340px, 44vw, 500px);
    overflow: hidden;
}

.site-hero-plant-img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: clamp(130px, 20vw, 200px);
    height: auto;
    max-height: 85%;
    object-fit: contain;
    object-position: left bottom;
    z-index: 1;
    pointer-events: none;
    filter: blur(0.8px);
    opacity: 0.95;
}

.site-hero-person-img {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: min(78vh, 520px);
    object-fit: contain;
    object-position: right bottom;
    display: block;
    margin-right: -4%;
}

/* Foto do hero (JPEG em fundo creme — sem recorte transparente) */
.site-hero-scene-img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: min(78vh, 520px);
    object-fit: contain;
    object-position: right bottom;
    margin-left: auto;
    image-rendering: auto;
}

/* Stats — abaixo do hero */
.site-stats-band {
    width: 100%;
    margin-top: 0;
    background: #ffffff;
    border-top: none;
}

.site-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 2vw, 24px);
    width: 100%;
    max-width: var(--site-content-max);
    margin: 0 auto;
    padding: clamp(24px, 4vw, 40px) var(--site-pad);
    box-sizing: border-box;
}

.site-stat {
    text-align: center;
}

.site-stat strong {
    display: block;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--site-green);
    margin-bottom: 4px;
}

.site-stat span {
    font-size: clamp(12px, 1.5vw, 14px);
    color: var(--site-green-muted);
    line-height: 1.4;
}

/* Sections — largura total */
.site-section {
    width: 100%;
    padding: var(--site-pad-section) 0;
    box-sizing: border-box;
}

.site-section-alt {
    background: var(--site-bg-alt);
}

.site-section-title {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 48px);
}

.site-section-title h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin: 0 0 8px;
}

.site-section-title p {
    color: var(--site-text-muted);
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Parceiros — faixa compacta de logos */
.site-partners-section {
    background: var(--site-green-soft);
    padding: clamp(20px, 3vw, 32px) 0;
}

.site-partners-head {
    margin: 0 0 14px;
    min-width: 0;
    text-align: center;
}

.site-partners-head h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 800;
    margin: 0;
    color: var(--site-green-heading);
    text-align: center;
    line-height: 1.2;
}

.site-partners-head p {
    margin: 4px 0 0;
    color: var(--site-green-muted);
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    text-align: center;
    line-height: 1.35;
}

.site-partners-empty {
    margin: 0;
    text-align: center;
    color: var(--site-green-muted);
    font-size: 0.9rem;
}

.site-partners-carousel {
    width: 100%;
}

.site-partners-viewport {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
}

.site-partners-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.site-partners-slide {
    flex: 0 0 calc(100% / var(--partners-per-view, 5));
    min-width: 0;
    padding: 0 6px;
    box-sizing: border-box;
}

.site-partner-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: var(--site-bg);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    min-height: 72px;
    height: 72px;
    padding: 10px 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 6px rgba(45, 79, 30, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
}

a.site-partner-card:hover {
    transform: translateY(-1px);
    border-color: rgba(45, 79, 30, 0.18);
    box-shadow: 0 4px 14px rgba(45, 79, 30, 0.1);
}

.site-partner-logo-wrap {
    flex: 0 0 56px;
    width: 56px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--site-bg-alt);
    border-radius: 8px;
    padding: 4px;
    box-sizing: border-box;
}

.site-partner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-partner-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.site-partner-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--site-green-heading);
    text-align: left;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-partner-text {
    font-size: 11px;
    color: var(--site-text-muted);
    text-align: left;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.site-partners-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.site-partners-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--site-border);
    background: var(--site-bg);
    color: var(--site-green);
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: background 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.site-partners-arrow:hover:not(:disabled) {
    background: rgba(45, 79, 30, 0.06);
    border-color: rgba(45, 79, 30, 0.2);
}

.site-partners-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.site-partners-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: center;
}

.site-partners-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(45, 79, 30, 0.22);
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.site-partners-dot.is-active {
    background: var(--site-green);
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .site-partner-card {
        min-height: 68px;
        height: 68px;
        padding: 8px 10px;
    }

    .site-partner-logo-wrap {
        flex-basis: 48px;
        width: 48px;
        height: 40px;
    }
}

.site-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
    width: 100%;
}

.site-service-card {
    background: #fff;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    padding: clamp(20px, 3vw, 32px);
    text-align: center;
    height: 100%;
}

.site-service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 12px 0 8px;
}

.site-service-card p {
    font-size: 14px;
    color: var(--site-text-muted);
    margin: 0;
}

.site-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-bottom: 4px;
}

.site-content-icon-emoji {
    font-size: 2rem;
    line-height: 1;
}

.site-content-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* Sobre mim — card verde sage (mockup) */
.site-about-section {
    padding-top: clamp(32px, 5vw, 56px);
    padding-bottom: clamp(32px, 5vw, 56px);
}

.site-about-card {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 380px);
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
    width: 100%;
    background: #B8C9B0;
    border-radius: 20px;
    padding: clamp(28px, 5vw, 48px);
    box-sizing: border-box;
}

.site-about-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    font-weight: 700;
    color: #1a2e14;
    margin: 0 0 8px;
    line-height: 1.25;
}

.site-about-crn {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 700;
    color: #2a3d22;
    margin: 0 0 20px;
}

.site-about-text p {
    font-size: clamp(0.875rem, 1.8vw, 0.95rem);
    line-height: 1.75;
    color: #2a3526;
    margin: 0 0 14px;
    text-align: left;
}

.site-about-text p:last-child {
    margin-bottom: 0;
}

.site-about-photo {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-height: 520px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(26, 46, 20, 0.12);
}

.site-about-photo img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

/* Blog */
.site-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 28px);
    width: 100%;
}

.site-blog-card {
    background: #fff;
    border-radius: var(--site-radius);
    overflow: hidden;
    border: 1px solid var(--site-border);
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.site-blog-card:hover {
    box-shadow: var(--site-shadow);
}

.site-blog-card img {
    width: 100%;
    height: clamp(140px, 22vw, 200px);
    object-fit: cover;
    display: block;
}

.site-blog-card-body {
    padding: clamp(16px, 2vw, 24px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.site-blog-card h3 {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.4;
    flex: 1;
}

.site-blog-card a.leia-mais {
    color: var(--site-green);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.site-blog-card a.leia-mais:hover {
    text-decoration: underline;
}

.site-contact-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.site-contact-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.site-contact-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 0;
    color: var(--site-text-muted);
    font-size: clamp(14px, 2vw, 16px);
}

.site-contact-list a {
    color: var(--site-text-muted);
    text-decoration: none;
}

.site-contact-list a:hover {
    color: var(--site-green);
    text-decoration: underline;
}

.site-contact-list .site-content-icon-img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.site-contact-list .site-content-icon-emoji {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Footer — largura total */
.site-footer {
    width: 100%;
    background: var(--site-green-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: clamp(40px, 6vw, 56px) 0 calc(24px + env(safe-area-inset-bottom, 0px));
    font-size: 14px;
    box-sizing: border-box;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    margin-bottom: 32px;
}

.site-footer h4 {
    color: #fff;
    font-size: 14px;
    margin: 0 0 12px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: block;
    padding: 6px 0;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}

/* Flow pages */
.site-flow {
    width: 100%;
    min-height: calc(100vh - var(--site-header-h));
    min-height: calc(100dvh - var(--site-header-h));
    padding: clamp(24px, 4vw, 48px) 0 clamp(48px, 8vw, 80px);
    background: var(--site-bg);
    box-sizing: border-box;
}

.site-flow-header {
    text-align: center;
    margin-bottom: clamp(24px, 4vw, 40px);
}

.site-flow-header h1 {
    font-size: clamp(1.4rem, 4vw, 1.85rem);
    font-weight: 800;
    margin: 0 0 8px;
}

.site-flow-header p {
    color: var(--site-text-muted);
    margin: 0;
}

.site-flow-card {
    background: #fff;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    padding: clamp(24px, 4vw, 40px);
    box-shadow: 0 8px 32px rgba(27, 48, 34, 0.07);
    width: 100%;
    box-sizing: border-box;
}

.site-schedule-card {
    overflow: visible;
}

.site-schedule-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(220px, 280px);
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
    width: 100%;
}

/* Calendar */
.site-calendar {
    user-select: none;
    width: 100%;
}

.site-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.site-cal-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    border-radius: 8px;
    color: var(--site-text-muted);
    text-decoration: none;
    font-size: 22px;
    flex-shrink: 0;
    transition: color 0.15s, background 0.15s;
}

.site-cal-arrow:hover {
    color: var(--site-green-dark);
    background: var(--site-green-soft);
}

.site-cal-month {
    font-weight: 700;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    text-transform: capitalize;
}

.site-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.site-cal-weekdays span {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--site-text-muted);
    padding: 4px 2px;
}

.site-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: clamp(4px, 1vw, 8px);
}

.site-cal-day {
    aspect-ratio: 1;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    border-radius: 50%;
    font-size: clamp(13px, 2vw, 15px);
    font-weight: 500;
    cursor: pointer;
    color: var(--site-text);
    font-family: inherit;
    text-decoration: none;
}

.site-cal-day:hover:not(:disabled) {
    background: var(--site-green-soft);
}

.site-cal-day:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.site-cal-day.selected,
a.site-cal-day.selected {
    background: #1B3022;
    color: #fff;
    font-weight: 600;
}

.site-cal-day.today:not(.selected) {
    box-shadow: inset 0 0 0 2px var(--site-green-dark);
    box-sizing: border-box;
}

.site-times {
    min-width: 0;
    width: 100%;
}

.site-times h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--site-text);
}

.site-time-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 420px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
}

.site-time-btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border: 1px solid var(--site-border);
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.site-time-btn:hover:not(:disabled) {
    border-color: #1B3022;
    color: #1B3022;
}

.site-time-btn.selected {
    background: #1B3022;
    border-color: #1B3022;
    color: #fff;
}

.site-time-btn:disabled,
.site-time-btn.occupied {
    opacity: 0.55;
    cursor: not-allowed;
    background: var(--site-bg-alt);
}

.site-time-meta {
    font-size: 11px;
    font-weight: 500;
    color: var(--site-text-muted);
}

.site-time-btn.selected .site-time-meta {
    color: rgba(255, 255, 255, 0.8);
}

.site-time-mode {
    display: block;
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.2;
}

.site-schedule-inline-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 28px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--site-border);
    font-size: 13px;
    color: var(--site-text-muted);
}

.site-schedule-inline-note svg {
    color: var(--site-green-dark);
    flex-shrink: 0;
}

.site-flow-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 13px;
    color: var(--site-text-muted);
    text-align: center;
    flex-wrap: wrap;
}

.site-booking-form {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--site-border);
}

.site-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.site-field {
    margin-bottom: 16px;
}

.site-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.site-field input,
.site-field select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--site-border);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
}

.site-field input:focus,
.site-field select:focus {
    outline: none;
    border-color: var(--site-green);
}

.site-payment-wrap {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.site-summary {
    background: var(--site-bg-alt);
    border-radius: var(--site-radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.site-summary h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 16px;
}

.site-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--site-border);
}

.site-summary-row:last-child {
    border-bottom: none;
    font-weight: 700;
    color: var(--site-green);
    font-size: 1.1rem;
    padding-top: 12px;
}

.site-summary-row span:first-child {
    color: var(--site-text-muted);
    flex-shrink: 0;
}

.site-pay-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.site-pay-option {
    position: relative;
    cursor: pointer;
}

.site-pay-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.site-pay-box {
    border: 2px solid var(--site-border);
    border-radius: var(--site-radius);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.15s;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.site-pay-option input:checked + .site-pay-box {
    border-color: var(--site-green);
    background: var(--site-green-soft);
}

.site-pix-qr {
    text-align: center;
    padding: 20px;
    background: var(--site-bg-alt);
    border-radius: var(--site-radius);
    margin-bottom: 20px;
}

.site-pix-qr code {
    font-size: 11px;
    word-break: break-all;
    color: var(--site-text-muted);
}

.site-confirm-icon {
    width: 72px;
    height: 72px;
    background: var(--site-green-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.site-confirm-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.site-gcal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 20px;
    border: 1px solid var(--site-border);
    border-radius: 10px;
    background: #fff;
    color: var(--site-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.site-blog-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: clamp(24px, 4vw, 40px);
    gap: 16px;
}

.site-blog-page-header h1 {
    font-size: clamp(1.5rem, 4vw, 1.85rem);
    font-weight: 800;
    margin: 0 0 6px;
}

.site-search-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--site-border);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-blog-cta {
    text-align: center;
    margin-top: clamp(32px, 5vw, 48px);
}

.site-article {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 48px) var(--site-pad) clamp(48px, 8vw, 80px);
    box-sizing: border-box;
}

.site-article h1 {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    font-weight: 800;
    margin: 16px 0;
    line-height: 1.25;
}

.site-article-content {
    line-height: 1.8;
    font-size: clamp(15px, 2vw, 17px);
}

/* ========== TABLET ========== */
@media (max-width: 1024px) {
    .site-hero-grid {
        grid-template-columns: 1fr;
    }

    .site-hero-visual {
        order: -1;
        min-height: 300px;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .site-hero-person-img {
        max-height: 380px;
        margin: 0 auto;
        object-position: center bottom;
    }

    .site-hero-scene-img {
        max-height: 380px;
    }

    .site-hero-plant-img {
        left: 8%;
        width: clamp(110px, 26vw, 160px);
    }

    .site-hero-copy {
        padding-right: 0;
        text-align: center;
    }

    .site-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .site-hero-actions {
        justify-content: center;
    }

    .site-about-card {
        grid-template-columns: 1fr;
    }

    .site-about-photo {
        order: -1;
        max-height: 380px;
    }

    .site-services-grid,
    .site-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-schedule-grid {
        grid-template-columns: 1fr;
    }

    .site-time-list {
        max-height: none;
        flex-direction: column;
        flex-wrap: nowrap;
        overflow-x: visible;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
    :root {
        --site-header-h: 64px;
    }

    body.site-body.has-mobile-nav,
    body.site-body.has-mobile-bar {
        padding-bottom: calc(var(--site-bottom-nav-h, 60px) + env(safe-area-inset-bottom, 0px));
    }

    .site-header-inner {
        grid-template-columns: 1fr auto;
        height: var(--site-header-h);
    }

    .site-nav--desktop {
        display: none;
    }

    .site-header-actions {
        grid-column: 2;
    }

    .site-header-cta {
        display: none;
    }

    .site-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav-drawer {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 88vw);
        height: 100%;
        height: 100dvh;
        padding: calc(var(--site-header-h) + 20px) 24px 24px;
        background: #fff;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
        z-index: 199;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .site-nav-drawer.open {
        transform: translateX(0);
    }

    .site-nav--mobile {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-bottom: 16px;
    }

    .site-nav--mobile a {
        padding: 16px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--site-border);
    }

    .site-nav--mobile a.active::after {
        display: none;
    }

    .site-nav--mobile a.active {
        color: var(--site-green);
        font-weight: 700;
    }

    .site-bottom-nav {
        display: flex !important;
    }

    .site-hero {
        padding-top: clamp(24px, 5vw, 36px);
    }

    .site-hero-visual {
        min-height: 260px;
    }

    .site-hero-person-img {
        max-height: 320px;
    }

    .site-hero-scene-img {
        max-height: 320px;
    }

    .site-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .site-btn-hero-primary,
    .site-btn-hero-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .site-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .site-stat {
        padding: 8px 4px;
    }

    .site-section {
        padding: clamp(40px, 10vw, 56px) 0;
    }

    .site-services-grid,
    .site-blog-grid {
        grid-template-columns: 1fr;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-form-row {
        grid-template-columns: 1fr;
    }

    .site-pay-methods {
        grid-template-columns: 1fr;
    }

    /* Horários: grade 2 colunas no mobile */
    .site-times {
        width: 100%;
        overflow: visible;
    }

    .site-time-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        overflow: visible;
        max-height: none;
        margin: 0;
        padding: 0;
    }

    .site-time-btn {
        width: 100%;
        min-width: 0;
    }

    .site-flow-card {
        border-radius: var(--site-radius);
        padding: clamp(20px, 4vw, 28px);
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .site-flow .site-container--narrow,
    .site-flow .site-container--schedule {
        padding-left: var(--site-pad);
        padding-right: var(--site-pad);
    }
}

@media (max-width: 380px) {
    .site-stats {
        grid-template-columns: 1fr 1fr;
    }

    .site-stat strong {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .site-menu-toggle {
        display: none;
    }

    .site-nav-overlay {
        display: none !important;
    }
}
