.navbar {
  background: #1a235c;
}
.navbar-brand {
  color: #fff;
  font-weight: 700;
}
.navbar-nav .nav-link {
  color: #fff;
  margin: 0 0.5rem;
  font-weight: 500;
}
.navbar-nav .nav-link:hover {
  color: #ffcc00;
}
.btn-signin {
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}

/* 4) Explore Popular Courses */
.courses {
  background: #fff;
  padding: 4rem 1rem 2rem;
}
.courses h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.courses p.subtitle {
  color: #6b7280;
  margin-bottom: 2rem;
}
.card-course {
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s;
}
.card-course:hover {
  transform: translateY(-5px);
}
.card-course .card-img-top {
  height: 160px;
  object-fit: cover;
}
.card-course .badge-price {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #1a235c;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
}
.card-course .card-body {
  position: relative;
  padding: 1rem 1rem 2.5rem;
}
.card-course .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.card-course .meta {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.card-course .btn-cart {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
}
.card-course .stars {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fbbf24;
  font-size: 0.9rem;
}

/* Explore All Courses button */
.explore-all {
  text-align: center;
  margin: 2.5rem 0 4rem;
}
.explore-all .btn {
  padding: 0.75rem 2.5rem;
  border-radius: 2rem;
  font-weight: 600;
  background: #1a235c;
  border: none;
}

/* Subscribe Section */
.subscribe-section {
  position: relative;
  background: #1a235c;
  color: #fff;
  padding: 3rem 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-radius: 0.75rem;
  max-width: 1200px;
  margin: 4rem auto 2rem;
}
.subscribe-section .text {
  flex: 1;
}
.subscribe-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.subscribe-section p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.subscribe-section .form-inline {
  display: flex;
  gap: 0.5rem;
}
.subscribe-section .form-inline .form-control {
  border-radius: 50px;
  padding: 0.5rem 1rem;
  flex: 1;
  border: none;
}
.subscribe-section .form-inline .btn {
  border-radius: 50px;
  padding: 0.5rem 1.75rem;
  background: #fff;
  color: #1a235c;
  font-weight: 600;
  border: none;
}
.subscribe-section .img-wrap {
  flex: 0 0 250px;
  position: relative;
}
.subscribe-section .img-wrap img {
  width: 100%;
  border-radius: 0.75rem;
  display: block;
}
.subscribe-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -50px;
  right: -100px;
  z-index: 0;
}
.subscribe-section * {
  position: relative;
  z-index: 1;
}

/* Footer Curvo */
footer {
  position: relative;
  background: #1a235c;
  color: #fff;
  padding: 5rem 1rem 2rem;
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
  margin-top: 4rem;
  overflow: hidden;
}
footer .container {
  position: relative;
  z-index: 1;
}
footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
footer p,
footer a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}
footer .footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
footer .social-icons a {
  font-size: 1.2rem;
  color: #fff;
  margin-right: 0.75rem;
}
footer .divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}
.to-top {
  position: absolute;
  right: 2rem;
  bottom: 4rem;
  width: 48px;
  height: 48px;
  background: #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.to-top i {
  color: #1a235c;
  font-size: 1.25rem;
}
footer::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: url("img/decor-lines.svg") no-repeat center center;
  background-size: contain;
  top: -50px;
  right: -50px;
  opacity: 0.3;
}

@media (max-width: 767px) {
  .subscribe-section {
    flex-direction: column;
    text-align: center;
  }
  .subscribe-section .img-wrap {
    order: -1;
    margin-bottom: 1.5rem;
  }
  .to-top {
    right: 1rem;
    bottom: 2rem;
  }
}

/* ================================
   Filter Section
   ================================ */
/* ==== Painel de Filtros Estilizado ==== */
.filter-panel {
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

/* Selects */
.filter-panel .form-select {
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  height: calc(2.5rem + 2px);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.filter-panel .form-select:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 0 0.2rem #ffcc00;
  outline: none;
}

/* Botão de ícone (filtros) */
.btn-icon {
  background: #f8f9fa;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.btn-icon:hover {
  background: #e2e6ea;
  border-color: #ffcc00;
}

/* Botão Find Now */
.btn-find {
  background: #ffcc00;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  height: calc(2.5rem + 2px);
  font-weight: 600;
  transition: background 0.2s;
}
.btn-find:hover {
  background: #ffcc00;
}

/* Responsividade */
@media (max-width: 767px) {
  .filter-panel {
    padding: 1rem;
  }
}

.project-gallery {
  background: #f8f9fa;
}

/* Card container */
.project-card {
  background: #fff;
  border: 1px solid #d6d4d4; /* borda fina */
  border-radius: 0.3rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Imagem com degradê e label */
.card-img-wrap {
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-card:hover .card-img-wrap img {
  transform: scale(1.05);
}
/* Degradê */

/* Author label */
.author-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Card body */
.card-body {
  padding: 1rem;
}
.card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #333;
}

/* Linha de ícones */
.icons-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #eee;
  padding-top: 0.75rem;
  gap: 0.5rem;
}
.icon-item {
  text-align: center;
  color: #6b7280;
  font-size: 0.85rem;
}
.icon-item i {
  display: block;
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 0.25rem;
}

.steps-section {
  background: #f8f9fa;
}

.steps-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #555;
}

.step-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #ffcc00, #ff9900);
  background-clip: text; /* PROPRIEDADE PADRÃO */
  -webkit-background-clip: text; /* WebKit */
  -webkit-text-fill-color: transparent;
}

.step-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #333;
}

.step-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* responsivo */
@media (max-width: 576px) {
  .steps-title {
    font-size: 1.5rem;
  }
  .step-card {
    padding: 1.5rem 1rem;
  }
}

/* ================ Serviços ================ */
.services-section {
  background: #f8f9fa;
}
.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #555;
}

.service-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.service-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #333;
}

.service-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.btn-outline-primary {
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-primary:hover {
  background: #1a235c;
  color: #fff;
  border-color: #1a235c;
}

.btn-outline-warning {
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-warning:hover {
  background: #1a235c;
  color: #fff;
  border-color: #1a235c;
}

/* Responsivo */
@media (max-width: 576px) {
  .service-card {
    padding: 1.5rem 1rem;
  }
  .service-icon img {
    width: 60px;
    height: 60px;
  }
}

/* ==============================
   Serviços – Ícones e Botões Amarelos
   ============================== */
.services-section .service-icon i {
  /* força o ícone a usar o seu amarelo */
  color: #ffcc00 !important;
}

/* botões outline-primary ficam amarelos */
.services-section .btn.btn-outline-primary {
  color: #ffcc00;
  border-color: #ffcc00;
}

/* hover: fundo amarelo e texto branco */
.services-section .btn.btn-outline-primary:hover,
.services-section .btn.btn-outline-primary:focus {
  background-color: #ffcc00;
  color: #fff;
  border-color: #ffcc00;
}

/* Texto dos títulos em preto */
.services-section .service-heading {
  color: #222 !important;
}

/* Texto dos parágrafos em cinza escuro */
.services-section .service-text {
  color: #555 !important;
}

/* ==== CSS do Banner ==== */
.page-banner {
  position: relative;
  /* degradê do roxo escuro para azul */
  background: linear-gradient(135deg, #1a235c 0%, #0944d5 100%);
  color: #fff;
  padding: 6rem 1rem;
  overflow: hidden;
}
.banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.breadcrumb-banner .breadcrumb {
  background: transparent;
  padding: 0;
}
.breadcrumb-banner .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: rgba(255, 255, 255, 0.7);
  padding: 0 0.5rem;
}
.breadcrumb-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.breadcrumb-banner .breadcrumb-item.active {
  color: rgba(255, 255, 255, 1);
}

/* Ondas decorativas */
.banner-wave {
  position: absolute;
  width: 200px;
  height: 120px;
}
.wave-left {
  top: 20%;
  left: -50px;
}
.wave-right {
  bottom: 10%;
  right: -50px;
}
.banner-wave svg {
  width: 100%;
  height: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
  .banner-title {
    font-size: 2rem;
  }
  .banner-wave {
    display: none;
  }
}

/*personalizados*/

/* == HEADER/ Filtro de Cursos == */
.courses-filter {
  background: #fff;
}
.courses-filter .nav-pills .nav-link {
  color: #333;
  font-weight: 500;
  border-radius: 50px;
}
.courses-filter .nav-pills .nav-link.active {
  background: #2563eb;
  color: #fff;
}
.courses-filter .form-select {
  min-width: 120px;
}

/* == GRID DE CURSOS == */
.course-card {
  background: #fff;
  border-radius: 0.3rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.course-card .badge-price {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #2563eb;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 1.5rem;
  font-weight: 600;
}
.course-card img {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  height: 180px;
  object-fit: cover;
}
.course-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}
.course-card .duration,
.course-card .rating {
  font-size: 0.85rem;
  color: #555;
}
.course-card .rating i {
  font-size: 0.9rem;
}
.course-card .btn-outline-primary {
  border-radius: 2rem;
  font-size: 0.85rem;
  padding: 0.4rem 0;
}

/* == RESPONSIVIDADE == */
@media (max-width: 576px) {
  .course-card img {
    height: 140px;
  }
}

/*Categorias

/* Sidebar de categorias */
.category-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border-radius: 0.5rem;
}
.category-title {
  font-weight: 600;
}
.categories-list li + li {
  margin-top: 0.5rem;
}
.categories-list a {
  display: flex;
  justify-content: space-between;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.categories-list a:hover {
  color: #ffcc00;
}

/* Heading da listagem */
.section-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

/* Lista de cursos */
.course-list .course-item {
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}
.course-list .course-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Thumb */
.course-thumb {
  width: 140px;
  height: 100px;
  overflow: hidden;
  border-radius: 0.5rem;
}
.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge-price {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #2563eb;
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
}

/* Info */
.course-info h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}
.course-info small {
  font-size: 0.85rem;
}
.course-info .duration small {
  color: #555;
}
.course-info .rating {
  font-size: 0.9rem;
  color: #555;
}

/* Botões */
.course-info .btn-outline-primary {
  border-radius: 2rem;
  font-size: 0.85rem;
  padding: 0.3rem 1rem;
}

/* Select de ordenação */
.form-select.w-auto {
  min-width: 120px;
}

/* Responsividade */
@media (max-width: 767px) {
  .course-thumb {
    width: 100px;
    height: 80px;
  }
}

/* Formulário de Orçamento

/* estilos.css */

/* Título da seção */
.section-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #555;
}

/* Formulário */
.quote-form .form-label {
  font-weight: 500;
  color: #444;
}
.quote-form .form-control,
.quote-form .form-select {
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.quote-form .form-control:focus,
.quote-form .form-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
  outline: none;
}
/* Ícones no input */
.quote-form .input-group-text {
  background: transparent;
  border: none;
  color: #777;
  font-size: 1.1rem;
}
/* Textarea */
.quote-form textarea.form-control {
  resize: vertical;
}

/* Botão Solicitar Orçamento */
.btn-quote {
  background: linear-gradient(45deg, #083fca, #1a235c);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.75rem;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-quote:hover {
  background: linear-gradient(45deg, #0944d5, #1a235c);
}

/* Responsividade */
@media (max-width: 767px) {
  .quote-form {
    padding: 2rem 1rem;
  }
}

.btn-quote:hover,
.btn-quote:focus {
  color: #ffcc00 !important;
}

/* ===================================
   Styles para a secção “Conheça melhor”
   =================================== */
.work-section .nav-pills .nav-link {
  border-radius: 50px;
  margin: 0 0.5rem;
  color: #555;
  font-weight: 500;
}
.work-section .nav-pills .nav-link.active {
  background: #ffcc00;
  color: #222;
}
.list-group-item {
  border: none;
  border-radius: 0;
  color: #333;
  font-weight: 500;
}
.list-group-item.active {
  background: #f1f1f1;
  color: #ffcc00;
}
.category-title {
  font-weight: 600;
  color: #333;
}
.tab-content img {
  border-radius: 0.5rem;
  max-height: 400px;
  object-fit: cover;
}
.tab-content p {
  color: #555;
  line-height: 1.6;
}

/* Responsividade */
@media (max-width: 767px) {
  .work-section .nav-pills {
    flex-wrap: wrap;
  }
  .list-group-item {
    text-align: center;
  }
}

/* Desnign de Interiores */

/* estilos.css */

/* seção de interiores */
.interior-section {
  background: #f8f9fa;
}
.section-title {
  font-size: 2rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 0.5rem;
}
.section-desc {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* imagem principal */
.image-wrapper {
  border-radius: 0.5rem;
}
.image-caption {
  font-size: 0.9rem;
}

/* painel de filtro */
.filter-panel {
  border: 1px solid #e5e5e5;
}
.filter-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

/* rádios e labels */
.form-check-input {
  margin-top: 0.32rem;
}
.form-check-label {
  margin-left: 0.5rem;
  color: #555;
  cursor: pointer;
}
.form-check-label:hover {
  color: #000;
}

/* responsivo */
@media (max-width: 991px) {
  .image-wrapper {
    max-height: 300px;
    overflow: hidden;
  }
}

/*OBRAS PRONTas Detalhes*/
/* estilos.css */

/* Seção de detalhes */
.project-detail {
  background: #fdfdfd;
}
.project-detail img {
  width: 100%;
  object-fit: cover;
}

/* Card de Detalhes */
.detail-card {
  border: 1px solid #e5e5e5;
}
.detail-card h5 {
  color: #333;
  font-weight: 600;
}
.detail-card ul li {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
}
.detail-card ul li:last-child {
  border-bottom: none;
}
.detail-card ul li i {
  font-size: 1.25rem;
  color: #ffcc00;
  margin-right: 0.75rem;
}

/* "Veja outras obras" */
.other-projects .card {
  border-radius: 0.5rem;
}
.other-projects .card-img-top {
  height: 100px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.other-projects .card-body p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.25rem;
}
.other-projects .card-body small {
  font-size: 0.85rem;
  color: #777;
}

/* Ajuste responsivo */
@media (max-width: 991px) {
  .detail-card,
  .other-projects .card {
    margin-left: auto;
    margin-right: auto;
  }
}



/*_______________________________________*/
/* WHATSAPP FLUTUANTE */

/* Base do botão */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none !important;
}

/* Animação pulse suave */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Hover e foco dão um pequeno “grow” */
.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Tooltip simples */
.whatsapp-float[data-tooltip]:hover::after,
.whatsapp-float[data-tooltip]:focus::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  right: 50%;
  transform: translateX(50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
  white-space: nowrap;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s;
  text-decoration: none;
}

/* Invisible tooltip por padrão */
.whatsapp-float[data-tooltip]::after {
  opacity: 0;
}

/* Responsive: no desktop “padrão” */
@media (min-width: 992px) {
  /* se quiser esconder no desktop:
.whatsapp-float { display: none; }
*/
  /* ou reposicionar para não atrapalhar: */
  .whatsapp-float {
    bottom: 60px;
    right: 60px;
  }
}

/* Tablet: aumenta um pouco */
@media (min-width: 768px) and (max-width: 991px) {
  .whatsapp-float {
    width: 70px;
    height: 70px;
    font-size: 34px;
    bottom: 50px;
    right: 50px;
  }

  .whatsapp-float {
    animation: pulse 3s infinite;
  }
}

/* Mobile: colocar mais visível e centralizar horizontalmente */
@media (max-width: 767px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 36px;
    bottom: 90px;
    right: 11%;
    transform: translateX(50%);
  }
}
