/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}



.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 20px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}



/* MOBILE: troca a logo para logoe.png */
@media (max-width: 991.98px) {
    #logo {
        content: url("img/logoe.png") !important;
        height: 50px;
        display: block;
    }

    .navbar {
        background-color: #fff !important;
    }

    .navbar-dark .navbar-nav .nav-link {
        color: #000;
    }

    .navbar-toggler {
        z-index: 1001;
    }

    .navbar-brand {
        padding: 10px 0;
    }
}

/* Estilo geral do botão WhatsApp */
.btn-whatsapp {
    background-color: transparent !important;
    border: none !important;
    color: #fff;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ícone maior */
.btn-whatsapp i {
    font-size: 25px;
    color: #000;
    transition: 0.3s ease;
}

/* Hover azul */
.btn-whatsapp:hover,
.btn-whatsapp:hover i {
    color: var(--primary) !important;
}

/* Quando navbar está sticky (fundo branco) */
.navbar.sticky-top .btn-whatsapp i,
.navbar.sticky-top .btn-whatsapp {
    color: var(--dark) !important;
}

/* Hover continua azul no sticky */
.navbar.sticky-top .btn-whatsapp:hover,
.navbar.sticky-top .btn-whatsapp:hover i {
    color: var(--primary) !important;
}

/* Garantir comportamento no mobile */
@media (max-width: 991.98px) {
    .navbar-dark .btn-whatsapp,
    .navbar-dark .btn-whatsapp i {
        color: var(--dark) !important;
    }

    .navbar-dark .btn-whatsapp:hover,
    .navbar-dark .btn-whatsapp:hover i {
        color: var(--primary) !important;
    }
}
/*** Carouol ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/* === SERVIÇO COM IMAGEM COMPLETA E ANIMAÇÃO === */

.service-item-img {
    height: 260px; /* altura menor para a imagem */
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.service-item-img .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover; /* garante que a imagem preencha e seja recortada corretamente */
    transition: transform 0.5s ease;
}

/* Camada escura com conteúdo que aparece ao passar o mouse */
.service-hover-content {
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    padding: 20px;
}

/* Botão com seta */
.service-hover-btn {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Efeitos ao passar o mouse */
.service-item-img:hover .img-cover {
    transform: scale(1.1); /* leve zoom */
}

.service-item-img:hover .service-hover-content {
    opacity: 1;
}

.service-item-img:hover .service-hover-btn {
    transform: translateY(0);
    opacity: 1;
}


.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.owl-carousel.vendor-carousel .owl-stage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel.vendor-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel.vendor-carousel1 .owl-stage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel.vendor-carousel1 .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

#header-carousel {
  background-color: transparent !important;
}
#header-carousel,
#header-carousel .carousel-item,
#header-carousel .carousel-inner,
#header-carousel .carousel-caption {
    background-color: transparent !important;
}

.service-title-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(73, 75, 77, 0.532); /* Azul com transparência */
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
  font-size: 1.1rem;
  z-index: 2;
}
#header-carousel {
    max-height: 600px;
    overflow: hidden;
}

#header-carousel .carousel-item {
    height: 600px;
}

#header-carousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.navbar {
    background-color: #ffffff !important;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: none !important;
    padding: 10px 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link {
    color: #000 !important;
}

.navbar .nav-link:hover {
    color: var(--primary) !important;
}

/* Topbar fixo no topo */
#topbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    transition: all 0.3s ease;
}

/* Navbar logo abaixo da topbar */
.navbar {
    position: fixed !important;
    top: 45px; /* altura da topbar */
    width: 100%;
    z-index: 1020;
    background-color: white !important;
    padding: 10px 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: top 0.3s ease;
}

/* Quando topbar estiver escondido, navbar sobe */
.navbar.topbar-hidden {
    top: 0 !important;
}

/* Ajuste de altura para o carrossel */
#header-carousel {
    margin-top: 115px; /* 45 (topbar) + 70 (navbar aprox.) */
}

#logo {
    height: 70px;
    margin-left: 30px;
}

/* Para centralizar melhor no eixo vertical da navbar */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

/* Topbar fixa no topo */
#topbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 45px;
    z-index: 1030;
    transition: top 0.3s ease;
}

/* Navbar fixa abaixo da topbar */
.navbar {
    position: fixed;
    top: 45px;
    width: 100%;
    z-index: 1020;
    background-color: #fff !important;
    padding: 10px 0 !important;
    transition: top 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Quando a topbar some, navbar sobe */
.navbar.topbar-hidden {
    top: 0 !important;
}

/* Remover margem fixa no carrossel */
#header-carousel {
    margin-top: 0 !important;
}

#header-carousel {
    margin-top: 0 !important;
    position: relative;
    z-index: 1; /* abaixo dos menus */
}
#espaco-topo {
  width: 100%;
  height: 115px; /* valor inicial para carregar corretamente */
}

#topbar .d-inline-flex {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

#topbar .d-inline-flex small {
    flex-shrink: 0;
    margin-right: 1rem;
}

.timeline-container {
  position: relative;
  padding-left: 0;
}

.timeline-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 370px;  /* ou 370px */
  width: 2px;
  background-color: #ccc;
  z-index: 0;
  transform: translateX(50%);
}

.timeline-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
}

.timeline-image {
  width: 320px;
  height: 320px;
  flex-shrink: 0;
  margin-right: 20px;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Coluna de ícone com linha */
.timeline-icon-column {
  width: 60px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-right: 20px;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  background-color: #06A3DA;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* conteúdo à direita */
.timeline-content {
  flex: 1;
}

.timeline-content h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.timeline-content p {
  font-size: 15px;
  color: #555;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .timeline-container::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .timeline-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .timeline-icon-column {
    margin-bottom: 15px;
  }

  .timeline-content {
    padding-top: 0;
  }
}

.timeline-content {
  flex: 1;
  font-family: 'Montserrat', sans-serif;
}

.timeline-content h4,
.timeline-content h5 {
  font-weight: 700;
  color: #222; /* tom mais escuro */
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Títulos maiores */
.timeline-content h4 {
  font-size: 28px;
}

.timeline-content h5 {
  font-size: 22px;
}

/* Parágrafos com fonte maior e espaçamento confortável */
.timeline-content p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.subpage-header {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.subpage-header .container {
  max-width: 1140px;
  margin: 0 auto;
}

.subpage-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 16px;
  color: #777;
  font-family: 'Montserrat', sans-serif;
}

.breadcrumb a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.separator {
  margin: 0 8px;
  color: #aaa;
}

.current-page {
  color: #999;
}


/*--------------------------------------------------------------
# Portfolio Section



--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

@media (max-width: 991.98px) {
  /* Topbar não aparece no mobile */
  #topbar {
    display: none !important;
  }

  /* Navbar sobe para o topo */
  .navbar {
    top: 0 !important;
  }

  /* Espaço fantasma é removido */
  #espaco-topo {
    display: none !important;
  }

  /* Se necessário, empurra o carrossel com margem manual */
  #header-carousel {
    margin-top: 70px !important; /* altura da navbar apenas */
  }
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    order: 2;
    margin-left: 120px;
  }

  .btn-whatsapp {
    order: 1;
  }

  .navbar .d-flex.align-items-center.d-lg-none {
    margin-left: auto;
  }
}

.nome-animado {
  position: relative;
  color: #fff;
  transition: color 0.3s ease;
}

.nome-animado::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #06A3DA; /* rosa moderno */
  transition: width 0.4s ease;
}

.nome-animado:hover {
  color: #06A3DA;
}

.nome-animado:hover::after {
  width: 100%;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/* ====== SEÇÃO SERVIÇOS ====== */

/* Força linhas a terem altura igual */
#servicos .tab-pane .row {
display: flex;
align-items: stretch;
}

/* Coluna de texto alinhada ao topo */
#servicos .col-lg-7 {
display: flex;
flex-direction: column;
justify-content: flex-start;
}

/* Coluna da imagem acompanha a altura do texto */
#servicos .col-lg-5 {
display: flex;
align-items: stretch;
}

/* Imagens com altura fixa no desktop */
#servicos .col-lg-5 img,
#servicos .service-img-fixed {
width: 100%;
height: 300px;      /* altura padronizada */
object-fit: cover;  /* recorta sem distorcer */
object-position: center;
border-radius: 8px;
display: block;
}

/* Responsividade: no mobile imagens voltam ao natural */
@media (max-width: 992px) {
#servicos .tab-pane .row {
flex-direction: column;
}

#servicos .col-lg-5 img,
#servicos .service-img-fixed {
height: auto;
}
}

/* Remove a linha cinza de baixo das abas */
#servicos .nav-tabs {
border-bottom: none;
}

/* Remove a borda/linha em volta da aba ativa */
#servicos .nav-tabs .nav-link.active {
border: none;
background: none; /* garante fundo limpo */
box-shadow: none;
}

/* Remove borda dos demais botões também */
#servicos .nav-tabs .nav-link {
border: none;
}

/* ===== ÍCONES SERVIÇOS ===== */
#servicos .nav-tabs .nav-link {
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 15px 10px;
}

/* Hover */
#servicos .nav-tabs .nav-link:hover {
  background-color: rgba(6, 163, 218, 0.1); /* leve azul */
  transform: translateY(-3px);
}

/* Ativo (clicado) */
#servicos .nav-tabs .nav-link.active {
  background-color: var(--primary);
  color: #fff;
  border-radius: 8px;
}

#servicos .nav-tabs .nav-link.active i,
#servicos .nav-tabs .nav-link.active h6 {
  color: #fff !important;
}

/* Listas sem bolinha */
#servicos ul {
  list-style: none;      /* remove bolinhas */
  padding-left: 0;       /* remove recuo da esquerda */
  margin: 0 0 15px 0;
}

#servicos ul li i {
  margin-right: 8px;     /* espaço entre o ícone e o texto */
  color: var(--primary); /* mantém a cor azul ou sua variável */
}

 /* Botão flutuante do WhatsApp */
  #whatsapp-button {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: #25d366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    animation: pulse 1.5s infinite;
    transition: transform 0.3s ease;
  }

  #whatsapp-button:hover {
    transform: scale(1.1);
  }

  #whatsapp-button img {
    width: 40px;
    height: 40px;
  }

  /* Efeito de piscar/pulsar */
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }

  /* Mini janela de atendimento */
  #whatsapp-chatbox {
    position: fixed;
    bottom: 90px;
    left: 25px;
    width: 280px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    font-family: Arial, sans-serif;
  }

  #chatbox-header {
    background-color: #25d366;
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: bold;
  }

  #chatbox-body {
    padding: 15px;
    font-size: 14px;
    color: #333;
    text-align: center;
  }

  #chatbox-body p {
    margin-bottom: 15px;
  }

  #start-chat {
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s;
  }

  #start-chat:hover {
    background-color: #1ebe5d;
  }

  /* Botão de fechar */
  #close-chat {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
  }

  /* Remove o botão de WhatsApp dentro do menu (navbar) apenas no mobile */
@media (max-width: 991.98px) {
  .navbar .btn-whatsapp {
    display: none !important;
  }
}