@charset "UTF-8";
/*
Theme Name: VT Travel
Theme URI: https://example.com/vttravel
Author: Seu Nome
Author URI: https://example.com
Description: Tema personalizado para VT Travel
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vttravel
*/
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Ajuste para header fixo com admin bar */
body.admin-bar .header-top-bar {
  top: 32px;
}

body.admin-bar .site-header {
  top: 72px; /* 40px top bar + 32px admin bar */
}

body.admin-bar .banner-section {
  margin-top: 152px; /* 40px top bar + 80px header + 32px admin bar */
}

@media screen and (max-width: 782px) {
  body.admin-bar .header-top-bar {
    top: 46px;
  }
  body.admin-bar .site-header {
    top: 86px; /* 40px top bar + 46px admin bar */
  }
  body.admin-bar .banner-section {
    margin-top: 166px; /* 40px top bar + 80px header + 46px admin bar */
  }
}
/* Container principal */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Prevenir overflow horizontal em todos os elementos */
* {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* Top Bar */
.header-top-bar {
  background-color: #fecd28;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #fecd28;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1001;
  box-sizing: border-box;
}
.header-top-bar .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-top-bar .top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-top-bar .top-bar-left {
  color: #666;
}
.header-top-bar .top-bar-right {
  color: #666;
}
.header-top-bar .top-bar-email,
.header-top-bar .top-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header-top-bar .top-bar-email:hover,
.header-top-bar .top-bar-phone:hover {
  color: #0073aa;
}

/* Header */
.site-header {
  background-color: #fff;
  padding: 20px 0;
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
.site-header .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
}
.site-logo a {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.site-logo a:hover {
  opacity: 0.8;
}
.site-logo a .logo-image {
  height: auto;
  max-height: 60px;
  width: auto;
  display: block;
}

/* Navegação */
#site-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}
#site-navigation ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}
#site-navigation ul li {
  margin: 0;
}
#site-navigation ul li a {
  text-decoration: none;
  color: #0073aa;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 16px;
}
#site-navigation ul li a:hover {
  color: #005a87;
}
#site-navigation ul li.current-menu-item a, #site-navigation ul li.current_page_item a {
  color: #005a87;
  font-weight: 600;
}

/* Animação para overlay */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Botão Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Redes Sociais */
.header-social {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}
.header-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #f5f5f5;
}
.header-social .social-link svg {
  width: 20px;
  height: 20px;
}
.header-social .social-link:hover {
  background-color: #0073aa;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 115, 170, 0.3);
}
.header-social .social-link.whatsapp-link:hover {
  background-color: #25d366;
}

/* Responsive Header */
@media (max-width: 1024px) {
  .site-header .header-content {
    gap: 30px;
  }
  .site-header #site-navigation ul {
    gap: 20px;
  }
}
/* Overlay para menu mobile */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
  pointer-events: none;
  box-sizing: border-box;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

@media (max-width: 768px) {
  .header-top-bar {
    padding: 8px 0;
    font-size: 12px;
  }
  .header-top-bar .top-bar-email,
  .header-top-bar .top-bar-phone {
    gap: 4px;
  }
  .site-header {
    padding: 15px 0;
    top: 36px;
  }
  .site-header .header-content {
    position: relative;
    justify-content: space-between;
  }
  .site-header .site-logo {
    order: 1;
    flex: 0;
  }
  .site-header #site-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #0073aa;
    padding: 80px 0 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 9999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  }
  .site-header #site-navigation.active {
    right: 0;
  }
  .site-header #site-navigation ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0 20px;
  }
  .site-header #site-navigation ul li {
    width: 100%;
  }
  .site-header #site-navigation ul li a {
    display: block;
    width: 100%;
    padding: 16px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease;
    text-shadow: none;
  }
  .site-header #site-navigation ul li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
  .site-header #site-navigation ul li.current-menu-item a, .site-header #site-navigation ul li.current_page_item a {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
    text-shadow: none;
  }
  .site-header #site-navigation ul li:last-child a {
    border-bottom: none;
  }
  .site-header .mobile-menu-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }
  .site-header .header-social {
    display: none;
  }
}
@media (max-width: 480px) {
  .site-header {
    padding: 12px 0;
  }
  .site-header .site-logo a .logo-image {
    max-height: 50px;
  }
  .site-header #site-navigation {
    width: 85%;
    padding: 70px 0 15px;
  }
  .site-header #site-navigation ul {
    padding: 0 15px;
    gap: 0;
  }
  .site-header #site-navigation ul li a {
    padding: 14px 18px;
    font-size: 15px;
  }
  .site-header .mobile-menu-toggle {
    width: 28px;
    height: 22px;
  }
}
/* Banner Section */
.banner-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 850px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow-x: hidden;
  overflow-y: visible;
  margin-top: 120px; /* 40px top bar + 80px header */
  box-sizing: border-box;
  transition: background-image 0.5s ease-in-out;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.banner-content .banner-title {
  font-size: 72px;
  font-weight: 300;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin: 0;
  letter-spacing: 2px;
}
.banner-content .banner-title .typewriter-text {
  display: inline-block;
}
.banner-content .banner-title .cursor {
  display: inline-block;
  margin-left: 5px;
  animation: blink 1s infinite;
  color: #fff;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .banner-section {
    height: 400px;
    margin-top: 106px; /* 36px top bar + 70px header menor em mobile */
  }
  .banner-content .banner-title {
    font-size: 42px;
    letter-spacing: 1px;
  }
}
@media (max-width: 480px) {
  .banner-section {
    height: 350px;
    margin-top: 96px; /* 36px top bar + 60px header menor em mobile pequeno */
  }
  .banner-content .banner-title {
    font-size: 32px;
    letter-spacing: 1px;
  }
}
/* Carrossel de Texto de Destinos */
.destinos-text-carousel-section {
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow-x: hidden;
  overflow-y: visible;
  background-color: transparent;
  box-sizing: border-box;
}

.destinos-text-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  margin: 3rem 0;
  box-sizing: border-box;
}

.destinos-text-carousel {
  display: flex;
  align-items: center;
  gap: 25px;
  animation: scroll-text 30s linear infinite;
  white-space: nowrap;
  will-change: transform;
  padding: 30px 0;
}

.destino-text-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 25px;
}

.destino-text-name {
  font-size: 20px;
  font-weight: 300;
  color: #333;
  white-space: nowrap;
  display: inline-block;
}

.destino-text-separator {
  font-size: 20px;
  color: #999;
  font-weight: 300;
}

/* Animação do carrossel de texto - loop infinito perfeito */
@keyframes scroll-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .destinos-text-carousel {
    gap: 20px;
    animation-duration: 25s;
    padding: 20px 0;
  }
  .destino-text-item {
    gap: 20px;
  }
  .destino-text-name,
  .destino-text-separator {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .destinos-text-carousel {
    gap: 18px;
    animation-duration: 20s;
    padding: 18px 0;
  }
  .destino-text-item {
    gap: 18px;
  }
  .destino-text-name,
  .destino-text-separator {
    font-size: 18px;
  }
}
/* Seção de Destinos (Centralizada) */
.destinos-section {
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  overflow-x: hidden;
  box-sizing: border-box;
}

.destinos-section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  color: #333;
  margin: 0 0 60px 0;
  padding: 0 20px;
}

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.destino-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.destino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.destino-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.destino-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.destino-card:hover .destino-image img {
  transform: scale(1.1);
}

.destino-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.destino-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.destino-text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  flex: 1;
  margin: 0;
}

.destinos-empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 18px;
}

.destinos-button-wrapper {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 80px;
  padding: 0 20px;
}

.destinos-button {
  display: inline-block;
  padding: 14px 40px;
  background-color: #0066ff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #0066ff;
}
.destinos-button:hover {
  background-color: #0052cc;
  border-color: #0052cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
}
.destinos-button:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .destinos-section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .destinos-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
  }
  .destino-image {
    height: 200px;
  }
  .destino-content {
    padding: 20px;
  }
  .destino-title {
    font-size: 18px;
  }
  .destino-text {
    font-size: 13px;
  }
  .destinos-button-wrapper {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .destinos-button {
    padding: 12px 35px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .destinos-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .destinos-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
  }
  .destino-image {
    height: 180px;
  }
  .destino-content {
    padding: 18px;
  }
  .destino-title {
    font-size: 18px;
  }
  .destino-text {
    font-size: 12px;
  }
  .destinos-button-wrapper {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .destinos-button {
    padding: 12px 30px;
    font-size: 14px;
  }
}
/* Seção Sobre a Agência */
.sobre-agencia-section {
  width: 100%;
  max-width: 100%;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  box-sizing: border-box;
}
.sobre-agencia-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 115, 170, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(0, 115, 170, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.sobre-agencia-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sobre-agencia-image {
  width: 100%;
  height: 550px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.sobre-agencia-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.8s ease;
}
.sobre-agencia-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}
.sobre-agencia-image:hover img {
  transform: scale(1.05);
}

.sobre-agencia-content {
  padding: 0 20px;
}

.sobre-agencia-title {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 25px 0;
  line-height: 1.2;
  position: relative;
  padding-bottom: 20px;
}
.sobre-agencia-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0073aa 0%, #005a87 100%);
  border-radius: 2px;
}

.sobre-agencia-text {
  font-size: 18px;
  color: #555;
  line-height: 1.9;
  font-weight: 300;
}
.sobre-agencia-text p {
  margin: 0 0 25px 0;
}
.sobre-agencia-text p:last-child {
  margin-bottom: 0;
}
.sobre-agencia-text p:first-child {
  font-size: 20px;
  color: #333;
  font-weight: 400;
}
.sobre-agencia-text strong {
  color: #0073aa;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
  .sobre-agencia-section {
    padding: 80px 0;
  }
  .sobre-agencia-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .sobre-agencia-image {
    height: 450px;
    transform: perspective(1000px) rotateY(0deg);
  }
  .sobre-agencia-image:hover {
    transform: scale(1.02);
  }
  .sobre-agencia-title {
    font-size: 40px;
    margin-bottom: 25px;
  }
  .sobre-agencia-text {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .sobre-agencia-section {
    padding: 60px 0;
  }
  .sobre-agencia-wrapper {
    gap: 40px;
    padding: 0 20px;
  }
  .sobre-agencia-image {
    height: 350px;
    border-radius: 15px;
  }
  .sobre-agencia-content {
    padding: 0;
  }
  .sobre-agencia-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .sobre-agencia-text {
    font-size: 16px;
  }
  .sobre-agencia-text p:first-child {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .sobre-agencia-section {
    padding: 50px 0;
  }
  .sobre-agencia-wrapper {
    gap: 30px;
    padding: 0 15px;
  }
  .sobre-agencia-image {
    height: 280px;
    border-radius: 12px;
  }
  .sobre-agencia-title {
    font-size: 32px;
  }
  .sobre-agencia-title::after {
    width: 60px;
  }
  .sobre-agencia-text {
    font-size: 15px;
  }
  .sobre-agencia-text p:first-child {
    font-size: 17px;
  }
}
/* Seção de Depoimentos */
.depoimentos-section {
  width: 100%;
  max-width: 100%;
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
}

.depoimentos-section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  color: #333;
  margin: 0 0 60px 0;
  padding: 0 20px;
}

.depoimentos-carousel {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}
.depoimentos-carousel .slick-list {
  margin: 0 -15px;
  overflow: hidden;
}
.depoimentos-carousel .slick-slide {
  padding: 0 15px;
  height: auto;
}
.depoimentos-carousel .slick-slide > div {
  height: 100%;
}
.depoimentos-carousel .slick-track {
  display: flex;
}
.depoimentos-carousel .slick-dots {
  bottom: -30px;
}
.depoimentos-carousel .slick-dots li {
  margin: 0 5px;
}
.depoimentos-carousel .slick-dots li button::before {
  font-size: 10px;
  color: #0066ff;
  opacity: 0.3;
}
.depoimentos-carousel .slick-dots li.slick-active button::before {
  opacity: 1;
  color: #0066ff;
}
.depoimentos-carousel .slick-prev,
.depoimentos-carousel .slick-next {
  width: 40px;
  height: 40px;
  z-index: 10;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.depoimentos-carousel .slick-prev::before,
.depoimentos-carousel .slick-next::before {
  display: none;
}
.depoimentos-carousel .slick-prev:hover,
.depoimentos-carousel .slick-next:hover {
  background-color: #0066ff;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}
.depoimentos-carousel .slick-prev:hover .dashicons,
.depoimentos-carousel .slick-next:hover .dashicons {
  color: #fff;
}
.depoimentos-carousel .slick-prev .dashicons,
.depoimentos-carousel .slick-next .dashicons {
  font-size: 20px;
  width: 20px;
  height: 20px;
  color: #0066ff;
  transition: color 0.3s ease;
}
.depoimentos-carousel .slick-prev {
  left: 20px;
}
.depoimentos-carousel .slick-next {
  right: 20px;
}

.depoimento-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 24px;
  padding: 55px 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 102, 255, 0.08);
  margin: 50px;
  min-height: 450px;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  width: 350px;
  max-width: 350px;
  flex-shrink: 0;
}
.depoimento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0066ff 0%, #0052cc 50%, #0066ff 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.depoimento-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.depoimento-card.has-image.slick-slide {
  padding-top: 2rem;
}
.depoimento-card.has-image.slick-slide.slick-active {
  padding-top: 2rem;
}
.depoimento-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 102, 255, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}
.depoimento-card:hover::before {
  opacity: 1;
}
.depoimento-card:hover::after {
  opacity: 1;
}

.depoimento-image {
  width: 110px;
  height: 110px;
  min-width: 110px;
  min-height: 110px;
  max-width: 110px;
  max-height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 25px;
  border: 3px solid rgba(0, 102, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.15), inset 0 0 0 3px rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 1/1;
  transition: all 0.4s ease;
}
.depoimento-image img,
.depoimento-image .depoimento-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  transition: transform 0.4s ease;
}

.depoimento-card:hover .depoimento-image {
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25), inset 0 0 0 3px rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}
.depoimento-card:hover .depoimento-image img,
.depoimento-card:hover .depoimento-image .depoimento-avatar {
  transform: scale(1.1);
}

.depoimento-card.has-image .depoimento-text {
  margin-top: 0;
}

.depoimento-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}

.depoimento-quote {
  text-align: center;
  margin-bottom: 20px;
  opacity: 0.3;
}
.depoimento-quote svg {
  width: 50px;
  height: 50px;
}

.depoimento-text {
  font-size: 17px;
  color: #444;
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 30px;
  margin-top: 0;
  flex: 1;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.3px;
}
.depoimento-text p {
  margin: 0 0 18px 0;
}
.depoimento-text p:last-child {
  margin-bottom: 0;
}

.depoimento-author {
  text-align: center;
  padding-top: 25px;
  border-top: 2px solid rgba(0, 102, 255, 0.1);
  position: relative;
}
.depoimento-author::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #0066ff 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.depoimento-card:hover .depoimento-author::before {
  opacity: 1;
}

.depoimento-name {
  font-size: 19px;
  font-weight: 700;
  color: #0066ff;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 16px;
  transition: color 0.3s ease;
}

.depoimento-card:hover .depoimento-name {
  color: #0052cc;
}

/* Responsive */
@media (max-width: 968px) {
  .depoimentos-section {
    padding: 80px 0;
  }
  .depoimentos-carousel {
    padding: 0;
  }
  .depoimentos-carousel .slick-list {
    margin: 0 -15px;
  }
  .depoimentos-carousel .slick-slide {
    padding: 0 15px;
  }
  .depoimentos-carousel .slick-prev {
    left: 15px;
  }
  .depoimentos-carousel .slick-next {
    right: 15px;
  }
  .depoimento-card {
    padding: 45px 35px;
    min-height: 380px;
  }
}
@media (max-width: 768px) {
  .depoimentos-section {
    padding: 60px 0 80px;
  }
  .depoimentos-section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .depoimentos-carousel {
    padding: 0;
  }
  .depoimentos-carousel .slick-list {
    margin: 0 -10px;
  }
  .depoimentos-carousel .slick-slide {
    padding: 0 10px;
  }
  .depoimentos-carousel .slick-prev {
    left: 10px;
  }
  .depoimentos-carousel .slick-next {
    right: 10px;
  }
  .depoimento-card {
    padding: 40px 30px;
    min-height: 360px;
  }
  .depoimento-text {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .depoimentos-section {
    padding: 50px 0 70px;
  }
  .depoimentos-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .depoimentos-carousel {
    padding: 0;
  }
  .depoimentos-carousel .slick-list {
    margin: 0 -8px;
  }
  .depoimentos-carousel .slick-slide {
    padding: 0 8px;
  }
  .depoimentos-carousel .slick-prev,
  .depoimentos-carousel .slick-next {
    width: 35px;
    height: 35px;
  }
  .depoimentos-carousel .slick-prev .dashicons,
  .depoimentos-carousel .slick-next .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
  }
  .depoimentos-carousel .slick-prev {
    left: 5px;
  }
  .depoimentos-carousel .slick-next {
    right: 5px;
  }
  .depoimento-card {
    padding: 35px 25px;
    min-height: 340px;
  }
  .depoimento-image {
    width: 90px;
    height: 90px;
  }
  .depoimento-text {
    font-size: 14px;
  }
  .depoimento-name {
    font-size: 16px;
  }
}
/* Seção de Serviços */
.servicos-section {
  width: 100%;
  max-width: 100%;
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
}

.servicos-section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  color: #333;
  margin: 0 0 60px 0;
  padding: 0 20px;
}

.servicos-list {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.servico-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  width: 100%;
}
.servico-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
}

.servico-image {
  width: 300px;
  min-width: 300px;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
}
.servico-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.servico-card:hover .servico-image img {
  transform: scale(1.05);
}

.servico-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.servico-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.servico-text {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.servico-text p {
  margin: 0 0 15px 0;
}
.servico-text p:last-child {
  margin-bottom: 0;
}

.servicos-button-wrapper {
  text-align: center;
  margin-top: 50px;
  padding: 0 20px;
}

.servicos-button {
  display: inline-block;
  padding: 14px 40px;
  background-color: #0066ff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #0066ff;
}
.servicos-button:hover {
  background-color: #0052cc;
  border-color: #0052cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
}
.servicos-button:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
  .servicos-section {
    padding: 80px 0;
  }
  .servicos-list {
    gap: 25px;
  }
  .servico-card {
    padding: 35px;
    gap: 30px;
  }
  .servico-image {
    width: 250px;
    min-width: 250px;
    height: 200px;
  }
}
@media (max-width: 768px) {
  .servicos-section {
    padding: 60px 0;
  }
  .servicos-section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .servicos-list {
    gap: 25px;
    padding: 0 20px;
  }
  .servico-card {
    flex-direction: column;
    padding: 30px;
    gap: 25px;
    align-items: flex-start;
  }
  .servico-image {
    width: 100%;
    min-width: 100%;
    height: 200px;
  }
  .servico-title {
    font-size: 22px;
  }
  .servico-text {
    font-size: 15px;
  }
  .servicos-button-wrapper {
    margin-top: 40px;
  }
  .servicos-button {
    padding: 12px 35px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .servicos-section {
    padding: 50px 0;
  }
  .servicos-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .servicos-list {
    padding: 0 15px;
    gap: 20px;
  }
  .servico-card {
    padding: 25px;
    gap: 20px;
  }
  .servico-image {
    height: 180px;
  }
  .servico-title {
    font-size: 20px;
  }
  .servico-text {
    font-size: 14px;
  }
  .servicos-button-wrapper {
    margin-top: 40px;
  }
  .servicos-button {
    padding: 12px 35px;
    font-size: 15px;
  }
}
/* Seção FAQ */
.faq-section {
  width: 100%;
  max-width: 100%;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
}

.faq-section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  color: #333;
  margin: 0 0 60px 0;
  padding: 0 20px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
}
.faq-item.active .faq-question {
  color: #0066ff;
  background-color: #f8f9ff;
}
.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}
.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 20px 25px 25px;
}

.faq-question {
  width: 100%;
  padding: 25px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.faq-question:hover {
  color: #0066ff;
}
.faq-question:focus {
  outline: none;
}

.faq-question-text {
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #0066ff;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 25px;
}

.faq-answer-content {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  padding-top: 21px;
}
.faq-answer-content p {
  margin: 0 0 15px 0;
}
.faq-answer-content p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .faq-list {
    padding: 0 15px;
    gap: 15px;
  }
  .faq-question {
    padding: 20px;
    font-size: 16px;
  }
  .faq-item.active .faq-answer {
    padding: 18px 20px 20px;
  }
  .faq-answer-content {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .faq-section {
    padding: 50px 0;
  }
  .faq-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .faq-question {
    padding: 18px;
    font-size: 15px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 18px 18px;
  }
  .faq-answer-content {
    font-size: 14px;
  }
}
/* Seção Blog */
.blog-section {
  width: 100%;
  max-width: 100%;
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
}

.blog-section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  color: #333;
  margin: 0 0 60px 0;
  padding: 0 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.blog-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.15);
}

.blog-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.blog-card-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.blog-card-image img,
.blog-card-image .blog-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card-image:hover img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  margin-bottom: 12px;
}

.blog-date {
  font-size: 14px;
  color: #999;
  font-weight: 400;
}

.blog-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
  line-height: 1.4;
}
.blog-card-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-card-title a:hover {
  color: #0066ff;
}

.blog-card-excerpt {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0066ff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: auto;
}
.blog-card-link svg {
  transition: transform 0.3s ease;
}
.blog-card-link:hover {
  color: #0052cc;
  gap: 12px;
}
.blog-card-link:hover svg {
  transform: translateX(4px);
}

.blog-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.blog-button {
  display: inline-block;
  padding: 16px 40px;
  background-color: #0066ff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}
.blog-button:hover {
  background-color: #0052cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-section {
    padding: 60px 0;
  }
  .blog-section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }
  .blog-card-image {
    height: 220px;
  }
  .blog-card-content {
    padding: 25px;
  }
  .blog-card-title {
    font-size: 22px;
  }
  .blog-card-excerpt {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .blog-section {
    padding: 50px 0;
  }
  .blog-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .blog-card-image {
    height: 200px;
  }
  .blog-card-content {
    padding: 20px;
  }
  .blog-card-title {
    font-size: 20px;
  }
  .blog-card-excerpt {
    font-size: 14px;
  }
  .blog-button {
    padding: 14px 32px;
    font-size: 15px;
  }
}
/* Main content */
.site-main {
  padding: 40px 0;
  min-height: 60vh;
}

/* Artigos */
article {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}
article:last-child {
  border-bottom: none;
}

.entry-header {
  margin-bottom: 15px;
}

.entry-title {
  margin: 0 0 10px 0;
  font-size: 28px;
}
.entry-title a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}
.entry-title a:hover {
  color: #0073aa;
}

.entry-content {
  margin-bottom: 15px;
  color: #666;
  line-height: 1.8;
}

.entry-footer {
  font-size: 14px;
  color: #999;
}
.entry-footer .posted-on::before {
  content: "📅 ";
  margin-right: 5px;
}

/* Sem resultados */
.no-results {
  text-align: center;
  padding: 60px 20px;
}
.no-results h2 {
  margin-bottom: 15px;
  color: #333;
}
.no-results p {
  color: #666;
}

/* Paginação */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.pagination .page-numbers {
  padding: 8px 15px;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  color: #333;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
  background-color: #0073aa;
  color: #fff;
  border-color: #0073aa;
}

/* Footer */
.site-footer {
  background-color: #0366ff;
  color: #fff;
  padding: 80px 0 40px;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
  align-items: start;
}

/* Logo e Tagline */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  margin-bottom: 10px;
}
.footer-logo a {
  display: inline-block;
  text-decoration: none;
}

.footer-logo-image {
  height: auto;
  max-height: 81px;
  width: auto;
}

.footer-tagline {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
  max-width: 400px;
}

/* Links de Navegação */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-menu li {
  margin: 0;
}
.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  transition: color 0.3s ease, opacity 0.3s ease;
  display: inline-block;
}
.footer-menu a:hover {
  color: #fecd28;
  opacity: 0.9;
}

/* Linha Divisória */
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin: 40px 0 30px;
}

/* Copyright e Links Legais */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-copyright {
  font-size: 14px;
  color: #fff;
  margin: 0;
  line-height: 1.6;
}

.footer-legal-links {
  margin-left: 10px;
}
.footer-legal-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal-links a:hover {
  color: #fecd28;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-links {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 30px;
  }
  .footer-content {
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-tagline {
    max-width: 100%;
  }
  .footer-divider {
    margin: 30px 0 20px;
  }
  .footer-copyright {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-copyright .footer-legal-links {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding: 50px 0 25px;
  }
  .footer-content {
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-logo-image {
    max-height: 40px;
  }
  .footer-tagline {
    font-size: 15px;
  }
  .footer-column-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .footer-menu {
    gap: 10px;
  }
  .footer-menu a {
    font-size: 14px;
  }
  .footer-copyright {
    font-size: 12px;
  }
}
/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
.whatsapp-float:active {
  transform: scale(0.95);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Animação de pulso */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
