/* Fonte padrão (texto) */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

strong, b {
    font-weight: 600;
}


/* HERO */

.hero {
    width: 100%;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0, 0, 0, 0.5);

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.hero-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-subtitle {
    color: #fff;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}


/* SOBRE O SERVIÇO */

.service-about {
    background-color: #FDF9F6;
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    white-space: normal;
}

.about-price {
    font-size: 18px;
    margin-bottom: 20px;
    color: #222;
}


/* GALERIA DE SERVIÇOS */

.service-card {
    display: block;
    text-decoration: none;
    color: #000;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
}

.service-card-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
}

.service-card-body {
    padding: 15px;
}

.service-card-body h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card-body p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Hover */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


/* PROFISSIONAL */

/* Imagem ocupa 100% da coluna */
.professional-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Área de texto com espaçamento */
.professional-content {
    padding: 40px;
}

.professional-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

.professional-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
}

.professional-description {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}


/* SEÇÃO ESPAÇO */

.space-section {
    width: 100%;
    min-height: 750px; /* mobile padrão */
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Desktop */
@media (min-width: 768px) {
    .space-section {
        min-height: 400px;
    }
}

.space-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0, 0, 0, 0.6);

    display: flex;
    align-items: center;
    padding: 40px 20px;
}

.space-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px 15px;
    color: #fff;
    transition: 0.3s;
    height: 100%;
}

.space-box i {
    font-size: 28px;
    margin-bottom: 15px;
}

.space-box h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.space-box p {
    font-size: 14px;
    margin: 0;
}

/* Hover */
.space-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* BOTÃO WHATSAPP FLUTUANTE */

/* Base */
.whatsapp-float {
    position: fixed;
    z-index: 9999;
    background-color: #198754;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

/* Ícone */
.whatsapp-float i {
    font-size: 20px;
}

/* TEXTO (mobile) */
.whatsapp-text {
    margin-left: 10px;
    font-size: 16px;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
    .whatsapp-float {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 14px;
        border-radius: 12px;
    }
}

/* DESKTOP */
@media (min-width: 769px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        right: 20px;
        bottom: 20px;
    }

    .whatsapp-text {
        display: none;
    }
}

/* HOVER */
.whatsapp-float:hover {
    background-color: #1ebe5d;
    color: #fff;
    transform: scale(1.05);
}

/* FOOTER */

.footer {
    background-color: #000;
    color: #fff;
    padding: 30px 20px;
}

.footer-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-info {
    font-size: 14px;
    margin: 0;
    color: #ccc;
}

.footer-copy {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    color: #777;
}
