
/* Reset e Variáveis de Cores (Paleta Neutra/Terrosa, Sem Neon) */
:root {
    --bg-color: #f7f4f0;
    --text-color: #2c2925;
    --accent-color: #d1c6b5;
    --accent-dark: #b8ab97;
    --white: #ffffff;
    --border-radius: 12px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --warm-100: #fdf8f3;
    --warm-200: #f0e8dc;
    --warm-300: #d9c9b5;
    --tag-bg: #e8ddd1;
    --tag-text: #6b5e50;
    --step-bg: #eee9e0;
    --shadow-soft: 0 4px 20px rgba(44,41,37,0.08);
    --shadow-card: 0 8px 30px rgba(44,41,37,0.10);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Background com overlay */
body {
    background-image: linear-gradient(rgba(255,250,248,0.9), rgba(226,210,198,0.9)), url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Grain overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.08;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='6' height='6'><circle cx='3' cy='3' r='0.7' fill='%232c2925' fill-opacity='0.12'/></svg>");
    background-repeat: repeat;
    background-size: 6px 6px;
}

/* Animações */
.animate {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 580ms cubic-bezier(.2,.9,.2,1), transform 580ms cubic-bezier(.2,.9,.2,1);
    will-change: opacity, transform;
}
.animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Garantir que cabeçalho, conteúdo e rodapé fiquem acima do overlay */
header.navbar, main.container, footer.site-footer {
    position: relative;
    z-index: 2;
}

/* Evitar zoom/crop na imagem principal da máquina */
.bento-item.image-card.grid-span-2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: rgba(247,244,240,0.6);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-color);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.logo {
    font-family: Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.logo-img {
    height: 2.8rem;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    font-weight: 500;
    border-bottom: 2px solid var(--text-color);
}

/* ===========================
   CONTAINER
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto 1rem;
    padding: 0 5%;
}

/* ===========================
   BENTO GRID (HOME)
   =========================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.bento-item {
    background-color: #eee9e0;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.grid-span-2 {
    grid-column: span 2;
}

/* Tipos de Cards */
.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-card h2, .text-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--text-color);
}

.text-card h2 {
    font-size: 1.8rem;
    line-height: 1.2;
}

.light-bg {
    background-color: var(--white);
}

.image-text-card {
    display: flex;
    align-items: center;
}

.image-text-card img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.image-text-card .card-content {
    width: 50%;
    padding: 2rem;
}

.image-text-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.action-card {
    background-color: var(--accent-color);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.action-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

/* ===========================
   BOTÕES
   =========================== */
.primary-btn {
    display: inline-block;
    background-color: var(--text-color);
    color: var(--white);
    border: none;
    padding: 0.9rem 1.6rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.primary-btn:hover {
    background-color: #000;
    transform: translateY(-1px);
}

.link-btn {
    margin-top: 1rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: letter-spacing 0.2s;
}
.link-btn:hover {
    letter-spacing: 0.5px;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    border: none;
    padding: 0.9rem 1.6rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
.whatsapp-btn:hover {
    background-color: #1db954;
    transform: translateY(-1px);
}

/* ===========================
   SECTION TAG (badge)
   =========================== */
.section-tag {
    display: inline-block;
    background: var(--tag-bg);
    color: var(--tag-text);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

/* ===========================
   SEÇÃO DE ORÇAMENTOS (HOME)
   =========================== */
.pricing-section {
    margin-top: 5rem;
    padding: 3rem 0 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: #6b5e50;
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.pricing-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--warm-200);
}

.price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    gap: 0.5rem;
}

.price-list li span {
    color: #5a504a;
}

.price-list li strong {
    font-weight: 600;
    white-space: nowrap;
    color: var(--text-color);
}

.pricing-note {
    background: var(--warm-200);
    border-left: 3px solid var(--accent-dark);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    color: #5a504a;
    margin-bottom: 1.5rem;
}
.card-note {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #9a8e84;
    font-style: italic;
}

.price-list li strong em {
    font-style: italic;
    font-weight: 400;
    font-size: 0.78rem;
    color: #9a8e84;
    display: block;
    line-height: 1.2;
}


.location-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--white);
    padding: 1.75rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    flex-wrap: wrap;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0 2rem;
    flex: 1;
    min-width: 200px;
}

.location-detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--tag-text);
    margin-bottom: 0.2rem;
}

.location-detail p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
}

.location-detail a {
    color: #25d366;
    text-decoration: none;
    font-weight: 500;
}

.loc-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.location-divider {
    width: 1px;
    height: 50px;
    background: var(--warm-200);
    flex-shrink: 0;
}

/* ===========================
   MODAL
   =========================== */
.modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 400px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
form label { font-size: 0.9rem; font-weight: 500; }
form input, form select {
    padding: 0.8rem;
    border: 1px solid var(--accent-dark);
    border-radius: 6px;
    background: var(--white);
}

.full-width { width: 100%; }

/* ===========================
   PÁGINAS SECUNDÁRIAS COMUM
   =========================== */
.page-content { padding: 0 5% 0.5rem; }

.page-hero {
    text-align: center;
    padding: 1.5rem 0 1.5rem;
    border-bottom: 1px solid var(--warm-200);
    margin-bottom: 2rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin: 0.5rem 0 1rem;
    line-height: 1.15;
}

.subtitle {
    color: #6b5e50;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   REPAROS — CARDS DE SERVIÇO
   =========================== */
.reparos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.service-img-wrap {
    position: relative;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.04);
}

.service-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--text-color);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
}

.service-info { padding: 1.5rem 1.75rem 1.75rem; }
.service-info h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}
.service-info p {
    color: #5a504a;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.service-highlights li {
    font-size: 0.85rem;
    color: #6b5e50;
    padding-left: 1rem;
    position: relative;
}
.service-highlights li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--accent-dark);
    font-size: 1.2rem;
    line-height: 1;
}

/* ===========================
   REPAROS — COMO FUNCIONA
   =========================== */
.how-it-works {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.how-it-works h2 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
}

.how-it-works .section-tag {
    margin-bottom: 0.5rem;
}

.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 160px;
    padding: 0 1.25rem;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--step-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 auto 0.85rem;
    color: var(--text-color);
}

.step-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.step-item p {
    font-size: 0.85rem;
    color: #6b5e50;
    line-height: 1.5;
}

.step-arrow {
    font-size: 1.4rem;
    color: var(--accent-dark);
    padding-top: 1rem;
    flex-shrink: 0;
}

/* ===========================
   CTA BLOCK
   =========================== */
.cta-block {
    background: linear-gradient(135deg, var(--warm-200) 0%, var(--accent-color) 100%);
    border-radius: var(--border-radius);
    padding: 2rem 2rem;
    text-align: center;
    margin-top: 0;
}

.cta-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: #5a504a;
    margin-bottom: 1rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   NOSSA ARTE — MANIFESTO
   =========================== */
.manifesto-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.manifesto-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.manifesto-text p {
    color: #5a504a;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.manifesto-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

/* ===========================
   NOSSA ARTE — TÉCNICAS
   =========================== */
.techniques-section {
    margin-bottom: 4.5rem;
    text-align: center;
}

.techniques-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.section-intro {
    color: #6b5e50;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.technique-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technique-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.technique-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.technique-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.technique-card p {
    font-size: 0.875rem;
    color: #6b5e50;
    line-height: 1.6;
}

/* ===========================
   NOSSA ARTE — PROCESSO TIMELINE
   =========================== */
.process-section {
    margin-bottom: 4.5rem;
    text-align: center;
}

.process-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.timeline-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-3px);
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.timeline-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.85rem;
    color: #6b5e50;
    line-height: 1.6;
}

/* ===========================
   NOSSA ARTE — GALERIA
   =========================== */
.gallery-section {
    margin-bottom: 3rem;
    text-align: center;
}

.gallery-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    text-align: left;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44,41,37,0.75));
    color: #fff;
    font-size: 0.82rem;
    padding: 1.5rem 1rem 0.85rem;
}

/* ===========================
   RODAPÉ
   =========================== */
.site-footer {
    background-color: var(--white);
    padding: 2.5rem 5% 1.5rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
}

.site-footer {
    transition: padding 300ms ease;
}
.site-footer.footer-shrink {
    padding: 1.25rem 5% 0.75rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-grid h3, .footer-grid h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-social a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--accent-dark);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--accent-color);
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #666;
}

/* ===========================
   RESPONSIVO
   =========================== */
@media (max-width: 1100px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .techniques-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .reparos-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .manifesto-section { grid-template-columns: 1fr; }
    .manifesto-img img { height: 250px; }
    .location-info { flex-direction: column; gap: 1rem; }
    .location-divider { width: 80%; height: 1px; margin: 0 auto; }
    .location-detail { padding: 0; }
    .steps-row { gap: 1rem; }
    .step-arrow { display: none; }
}

@media (max-width: 700px) {
    .footer-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; }
    .techniques-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .page-title { font-size: 2.2rem; }
    .cta-block { padding: 2rem 1.5rem; }
}

@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; }
    .grid-span-2 { grid-column: span 1; }
    .image-text-card { flex-direction: column; }
    .image-text-card img, .image-text-card .card-content { width: 100%; }
    nav ul { display: none; }
    .how-it-works { padding: 2rem 1.25rem; }
    .manifesto-section { padding: 2rem 1.25rem; }
}
