:root {
    --bs-font-sans-serif: "Helvetica Neue", Roboto;
    line-height: 1.1;
    background-color: #f5f5f7;
}

body {
    font-family: 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #f2f2f2;
}

.cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: rgb(0, 0, 0);
    padding: 10px;
    display: none;
    z-index: 1000;
}

.cookieBanner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookieBanner p {
    margin: 0;
    font-size: 0.9em;
}

html {
    scroll-behavior: smooth;
    background-color: #f5f5f7;
}

@media (min-width: 768px) {
    .swiper-slide img {
        height: 200px;
    }
}

.rounded-corners {
    border-radius: 15px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}


.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-agendar {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
    border-radius: 15px;
}

.navbar {
    transition: all 0.4s;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled-dark {
    background-color: rgba(22, 22, 23, .8) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled-light {
    background-color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
    transition: all 0.2s;
}

.nav-link:hover {
    color: #000000 !important;
}

.sobre-empresa-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.sobre-empresa-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.sobre-empresa-text {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
}

.sobre-empresa-highlight {
    color: #007bff;
    font-weight: bold;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.benefit-icon {
    color: #007bff;
    /* Cor do ícone (use a cor do tema do Bootstrap) */
    font-size: 1.2rem;
    margin-right: 0.8rem;
}

.benefit-title {
    font-weight: bold;
}

.bi {
    width: 1em;
    height: 1em;
    vertical-align: -.125em;
    fill: currentcolor;
}

/* This element defines the size the iframe will take.
In this example we want to have a ratio of 25:14 */
.aspect-ratio {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* The height of the item will now be 56.25% of the width. */
}

/* Adjust the iframe so it's rendered in the outer-width and outer-height of it's parent */
.aspect-ratio iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.hero {
    padding: 5rem 0;
    text-align: center;
}

.hero .btn-primary {

    padding: 7px 15px;
    font-size: 21px;
    box-shadow: #004C94 ;
  }
  
  .hero .btn-primary:hover {
    background-color: #0d47a1;
    border-color: #0d47a1;
  
  }
.btn-secundary {
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 980px;
  }


.product-image {
    max-width: 100%;
    height: auto;
}

.client-logo {
    transition: transform .2s;
    /* Animação */
    margin: 0 auto;
}

.client-logo:hover {
    transform: scale(1.1);
    /* Zoom ao passar o mouse */
}

.card {
    margin-top: 10px;
    border-radius: 18px;
    row-gap: 20px;

    box-shadow: #f8f9fa;
    letter-spacing: -0.05em;

}

.card-img-overlay {
    background: rgba(0, 0, 0, 0.5);
    /* Adiciona uma camada escura sobre a imagem para melhorar a legibilidade do texto */
}

.jumbotron {
    background: url('images/banner.webp') no-repeat center center;
    background-size: cover;
    position: relative;
}

.overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(0.25turn, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
    position: absolute;
    top: 0;
    left: 0;
}

body {
    padding-top: 60px;
    background-color: #f5f5f7;
}


.container .card:hover {
    transform: scale(1.01);
    visibility: visible;
    transition-delay: 0.1s;
}

/* Aparência de Links */
.footer-link {
    text-decoration: none;
    /* Remove sublinhado */
    transition: color 0.3s;
    /* Efeito de transição suave */
}

.footer-link:hover {
    text-decoration: underline;
    /* Adiciona sublinhado no hover */
    color: #a5a5a5;
    /* Cor mais clara no hover */
}

/* Rodapé Profissional */
.footer-divider {
    border-top: 1px solid #666;
    /* Linha de divisão */
    margin: 20px 0;
    /* Margem acima e abaixo da linha */
}

#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    display: none;
    z-index: 1000;
}