/* ==========================
   RESET GLOBAL
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f3f4f6;
    color: #1f2937;
    line-height: 1.6;
}

.container {
    width: min(1120px, 100% - 2rem);
    margin: 0 auto;
}

/* ==========================
   TOPO / HEADER
========================== */
.topbar {
    background: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    animation: fadeDown 0.6s ease;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav a {
    margin-left: 1.5rem;
    font-weight: 500;
    color: #374151;
    transition: 0.2s;
    text-decoration: none;
}

.nav a:hover {
    color: #2563eb;
}

/* ==========================
   BOTÕES MODERNOS
========================== */
.btn {
    padding: 0.75rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-3px);
}

.btn-secondary {
    background: #e5e7eb;
    color: #111827;
}

.btn-secondary:hover {
    background: #d1d5db;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

/* ==========================
   HERO / IMAGEM GRANDE
========================== */
.hero {
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #111827;
    animation: fadeIn 1s ease;
}

.hero-text p {
    margin: 1rem 0 1.5rem;
    font-size: 1.15rem;
    color: #374151;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-badges li {
    list-style: none;
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 95%;
    max-width: 520px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.22);
    animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==========================
   SEÇÕES GERAIS
========================== */
.section {
    padding: 3.5rem 0;
}
/* Ajuste do logo no topo */
.logo-img {
    height: 65px;
    width: auto;
    display: block;
}

/* Ajuste do alinhamento do topo */
.topbar-content {
    align-items: center;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.section-alt {
    background: #ffffff;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #111827;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: #4b5563;
}

/* ==========================
   CARDS / SERVIÇOS
========================== */
.cards-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    background: white;
    padding: 1.7rem;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    animation: fadeIn 1.5s ease;
}

.card h3 {
    font-size: 1.3rem;
    color: #111827;
    margin-bottom: 1rem;
}

.card-quote {
    font-style: italic;
}

/* ==========================
   SOBRE
========================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.about-box {
    background: white;
    padding: 1.7rem;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
}

/* ==========================
   CONTATO
========================== */
.contact-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    text-align: center;
    border: 1px solid #e5e7eb;
    animation: fadeIn 1.4s ease;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #111827;
}

.contact-phone {
    font-size: 1.3rem;
    font-weight: bold;
    color: #111827;
}

/* ==========================
   RODAPÉ
========================== */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: #6b7280;
    font-size: 0.95rem;
}

/* ==========================
   RESPONSIVO
========================== */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image img {
        max-width: 90%;
        margin: 2rem auto 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }
}
/* =================================
   AJUSTE PROFISSIONAL DO LOGO NO TOPO
=================================== */

.logo-area img,
.logo-img {
    height: 85px !important;
    width: auto;
    display: block;
}

.topbar {
    padding: 0.4rem 0 !important;
}

.topbar-content {
    align-items: center !important;
    padding: 0 !important;
}

.nav a {
    padding-top: 0.6rem;
}

#btnTopWhats {
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
}
/* =================================
   AJUSTE FINAL DO LOGO — VERSÃO PERFEITA
=================================== */

.logo-area img,
.logo-img {
    height: 110px !important;   /* aumenta bastante o logo */
    width: auto;
    margin-top: -12px;          /* desce um pouco */
    display: block;
}

.topbar {
    padding: 0.8rem 0 !important;   /* aumenta a altura da barra */
}

.topbar-content {
    align-items: center !important;
}

.nav a {
    padding-top: 1rem;              /* desce o menu para alinhar com logo */
}

#btnTopWhats {
    padding-top: 1rem !important;   /* alinha botão com menu */
    padding-bottom: 1rem !important;
}
/* AJUSTE PROFISSIONAL DO LOGO + TEXTO NO TOPO */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 55px;
    width: auto;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-crepaldi {
    font-size: 1.35rem;
    font-weight: 700;
    color: #b45309; /* marrom */
}

.logo-refri {
    font
/* Botão WhatsApp Verde */
.btn-whats {
    background: #25D366 !important;
    color: white !important;
    border: none !important;
    padding: 0.75rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.25s ease;
}

.btn-whats:hover {
    background: #1ebe5c !important;
    transform: translateY(-3px);
}
