/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

/* Tailwind CSS Directives */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Styles */
body {
    font-family: 'Poppins', sans-serif;
}
.hero-image-styled {
    border: 10px solid white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 15px rgba(0, 0, 0, 0.07);
    border-radius: 0.5rem;
}
/* Estilos para o Modal da Galeria */
#gallery-modal {
    transition: opacity 0.3s ease-in-out;
}

#modal-content {
    transition: transform 0.3s ease-in-out;
}

#gallery-modal.hidden #modal-content {
    transform: scale(0.95);
}

#modal-thumbnails .thumbnail {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

#modal-thumbnails .thumbnail:hover {
    transform: scale(1.1);
}

#modal-thumbnails .thumbnail.active {
    border-color: #0ea5e9; /* Cor 'accent' */
}

/* Adiciona um cursor de ponteiro aos cards de projeto para indicar que são clicáveis */
#projetos-grid .group {
    cursor: pointer;
}
/* Estilos para o botão flutuante do WhatsApp */
.whatsapp-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
/* Estilos para o botão flutuante do WhatsApp */
.whatsapp-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}