/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@700&family=Montserrat:wght@300;400;700&family=Open+Sans:wght@300;400;700&display=swap');

/* Definições gerais */
:root {
    --bgcolor: #1C1C1C;
    --btn: #035eae;
    --accent-color: #013766;
    --white: #fff;
    --gray: #aaa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--white);
    font-family: 'Karla', sans-serif;
}

body {
    background-color: var(--bgcolor);
    line-height: 1.6;
}

/* Container centralizado */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90vw;
    max-width: 600px;
    margin: 40px auto;
    gap: 20px;
    padding: 20px;
}

/* Logo da empresa */
.logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--btn);
}

/* Título principal */
.titulo-link {
    font-size: 2.3rem;
    text-align: center;
    color: var(--white);
}

/* Links estilizados como botões */
.link {
    background-color: var(--btn);
    color: var(--white);
    width: 100%;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border: 1px solid var(--btn);
    border-radius: 5px;
    transition: all 250ms ease-in-out;
}

.link:hover {
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Rodapé */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    font-size: 0.9rem;
    color: var(--gray);
     position: relative; 
}

/* Botão flutuante do WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn i {
    color: var(--white); /* Cor preta para o ícone */
    font-size: 24px;
    
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}



/* Botão fixo do lado esquerdo */
.side-btn {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Alterado para 'left' em vez de 'right' */
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #e1306c; /* Cor do Instagram */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.side-btn-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.side-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


/* Responsividade */
@media (min-width: 1024px) {
    .container {
        width: 40vw;
    }

    footer {
        margin-top: 9vw;
        font-size: 0.5rem;
    }
}

/* Quebra a linha apenas em telas pequenas */
@media (max-width: 768px) {
    footer::after {
        content: "Digital Solutions 2025";
        display: block;
        margin-top: 8px;
        font-size: 0.75rem;
    }

    footer::before {
        content: "Copyright ©";
        display: block;
        font-size: 0.75rem;
    }

    /* Esconde o conteúdo original para não repetir */
    footer {
        font-size: 0;
    }
}