/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
     background-image: url('../images/Fundodtp.jpg');
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

/* Animação de entrada */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Nav redondo no topo, centralizado */
.round-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.nav-link {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ffffff00;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-link:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


/* Seção Instagram */
.instagram-section {
    text-align: center;
    padding: 60px 30px;
    background-color: #fff;
    color: #333;
    border-radius: 12px;
    max-width: 800px;
    margin: 120px auto 60px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out;
}

.instagram-section h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #222;
}

.instagram-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #444;
}

.instagram-section p strong {
    color: #000; /* Preto no lugar do rosa */
    font-weight: 600;
}

/* Botão estilo "outline" em preto e branco */
.btn-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-instagram-link:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Footer em preto e cinza */
.footer {
    background-color: #000;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 240px;
    padding: 20px;
    background-color: #6b7073;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-column:hover {
    transform: translateY(-5px);
    background-color: #222;
}

.footer-column p {
    margin: 6px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ddd;
}

.footer-column strong {
    color: #fff; /* Branco para os títulos */
    font-size: 1.1rem;
    font-weight: 600;
}

/* Estilo para o link de telefone */
.phone-link {
    color: #ddd; /* Cor clara, igual ao texto */
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #fff;
    text-decoration: underline;
}


/* Botão do Instagram */
.btn-instagram {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.btn-instagram .instagram-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Efeito hover */
.btn-instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
/* Responsivo */
@media (max-width: 768px) {
    .round-nav {
        top: 15px;
        transform: translateX(-50%);
    }

    .nav-link {
        width: 70px;
        height: 70px;
    }

    .instagram-section {
        margin-top: 100px;
        padding: 40px 20px;
        border-radius: 10px;
    }

    .instagram-section h2 {
        font-size: 1.4rem;
    }

    .instagram-section p {
        font-size: 1.1rem;
    }

    .btn-instagram-link {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 16px;
    }

    .footer {
        padding: 40px 16px;
    }

    .btn-instagram {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .btn-instagram .instagram-icon {
        width: 32px;
        height: 32px;
    }
}