/* ============================
    Importação de Fontes
============================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* ============================
        Variáveis Globais
============================ */
:root {
    --main-color-default: #5c5b5b;
    --main-color: #fbf8f8;
    --color-dark: #171515;
    --color-success: #05c318;
    --color-danger: #c50000;
    --color-warning: #efd400;
    --color-disable: #a3a3a3;
    --button-hover: #797979;

    /* Altura da navbar (usada no mobile também) */
    --navbar-height: 120px;
}

/* Altura ajustada da navbar no mobile */
@media (max-width: 768px) {
    :root {
        --navbar-height: 120px; /* pode aumentar se quiser mais espaço */
    }
}


/* ============================
        Configurações Gerais
============================ */
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: #E4E4E5;
}

a {
    text-decoration: none;
    color: var(--color-disable);
}


/* ============================
        Sidebar
============================ */
.sidebar {
    position: fixed;
    height: 100%;
    padding: 10px 15px 0;
    z-index: 0;
}

.sidebar button {
    height: 60px;
}


/* ============================
        Espaçamento dos blocos
============================ */
.bloco {
    margin: 70px 0px;
}


/* ============================
        Paginação
============================ */
.pagination .page-link {
    background: rgb(138, 138, 138);
    color: white;
    border: none;
}


/* ============================
        CAROUSEL / SLIDES
============================ */

/* Impede o slide de causar scroll lateral */
.carousel-inner {
    width: 100%;
    overflow: hidden;
}

/* Imagens – desktop */
.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* CAPTION – Ajustes no mobile */
@media (max-width: 768px) {

    /* Move o texto para baixo da navbar */
    .carousel-caption {
        margin-top: var(--navbar-height);
        padding-top: 10px !important;
        text-align: left !important;
        width: 100%;
        left: 0;
        right: 0;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Título principal */
    .carousel-caption h1 {
        font-size: 1.4rem !important;
        font-weight: 800;
    }

    /* Subtítulo */
    .carousel-caption span {
        font-size: 0.95rem !important;
    }

    /* Texto pequeno */
    .carousel-caption p {
        font-size: 0.85rem !important;
        line-height: 1.25;
    }

    /* Aumenta a altura mínima da imagem no mobile */
    .carousel-item img {
        min-height: 750px;
        object-position: center;
    }
}


/* ============================
        BOTÕES FLUTUANTES
============================ */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-buttons a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-buttons a img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.floating-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-phone {
    background-color: #25d366;
}

.btn-whatsapp {
    background-color: #25d366;
}