/* ==========================
   ESTILOS GERAIS
========================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
}

/* ==========================
   HERO SECTION
========================== */
.hero {
    min-height: 60vh;
    background: url('../img/hero-lavagem.jpg') center center / cover no-repeat;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    letter-spacing: 1px;
}


/* ==========================
   SEÇÃO SOBRE
========================== */
section h2 {
    color: #2c2c2c;
}

section p {
    font-size: 1rem;
}

/* ==========================
   CARDS - TIPOS DE LAVAGEM
========================== */
.card {
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.card-title {
    color: #1f1f1f;
}

/* ==========================
   PROCESSO
========================== */
section .col-md-3 h5 {
    color: #000;
}

section .col-md-3 p {
    font-size: 0.95rem;
    color: #555;
}

/* ==========================
   CONTATO
========================== */
#contato {
    background: linear-gradient(135deg, #111, #333);
}

#contato h2 {
    color: #fff;
}

#contato p {
    color: #ddd;
}

#contato .btn-success {
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* ==========================
   FOOTER
========================== */
footer {
    font-size: 0.9rem;
    background-color: #fc05b2;
}

footer p {
    margin: 0;
    color: #faf8f9;
}

/* ==========================
   RESPONSIVO
========================== */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}