/* Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #fef8f5, #f9e4df);
    color: #4a3a34;
    line-height: 1.6;
    overflow-x: hidden;
    text-align: center;
    transition: background 0.3s ease;
}

/* Background Customizado */
.bg-new {
    background: linear-gradient(135deg, #f8ede3, #ac857d);
    color: #55443d;
}

/* Header */
header {
    background: linear-gradient(135deg, #f9e4df, #f3c8be);
    color: #4a3a34;
    padding: 1.5em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    width: 120px;
    height: auto;
}

nav {
    display: flex;
    gap: 1.2em;
}

nav a {
    color: #4a3a34;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5em;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
    background-color: #d99286;
    color: #fff;
}

/* Seção */
.section {
    padding: 3em 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.section.show {
    opacity: 1;
    transform: translateY(0);
}

/* Sobre Nós */
#about h2 {
    color: #333333;
}

#about .lead {
    color: #4a3a34;
}

#about .text-muted {
    color: #6c757d !important;
}

#about .fw-bold {
    color: #4a3a34;
}

/* Serviços */
#services .service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
}

.card {
    background-color: #fff8f5;
    padding: 2em;
    flex: 1 1 calc(33.333% - 1em);
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.card h3 {
    color: #d99286;
    margin-bottom: 0.5em;
    font-size: 1.2rem;
}

.card p {
    font-size: 0.95rem;
    color: #4a3a34;
}

/* Botões Customizados */
.btn-custom {
    background-color: #ff2a00 !important;
    color: #fff !important;
}

.btn-custom:hover {
    background-color: #25d366 !important;
}

/* Botão Contato */
.custom-btn-color {
    background-color: #f1e0b5 !important;
    color: #333 !important;
    border: 2px solid #f1e0b5 !important;
}

.custom-btn-color:hover {
    background-color: #e3d0b0 !important;
    border-color: #e3d0b0 !important;
    color: #333 !important;
}

/* Ícones Sociais */
.social-icons i {
    font-size: 40px;
    color: black !important;
}

/* Estilos Flutuantes */
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

/* Media Queries */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        flex-direction: column;
        gap: 0.5em;
    }

    .section {
        padding: 2em 1em;
    }

    .card {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 1em;
    }

    .logo {
        width: 100px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1em;
    }

    nav a {
        padding: 0.3em;
    }

    .card {
        padding: 1.5em;
    }

    .card h3 {
        font-size: 1rem;
    }

    .card p {
        font-size: 0.85rem;
    }
}