@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}

:root {
    --primary: #1e3c72;
    --secondary: #2a5298;
    --accent: #004183;
    --white: #fff;
    --dark: #1e1c2a;
    --light-gray: #f8f9fa;
    --text-gray: #6c757d;
}

body {
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

/* Header */
.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(30, 60, 114, 0.1);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo i {
    margin-right: 10px;
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--primary);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.menu {
    cursor: pointer;
    display: none;
    flex-direction: column;
}

.menu .bar {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 5% 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.home-text {
    max-width: 600px;
    z-index: 2;
}

.home-text .text-h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.home-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.4s both;
}

.home-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.6s both;
}

.home-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.8s both;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.home-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
}

.home-img {
    max-width: 500px;
    z-index: 2;
    animation: fadeInRight 1s ease 0.5s both;
}

.home-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stats Section */
.stats {
    padding: 80px 5%;
    background: var(--light-gray);
    text-align: center;
}

.stats h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Carrossel de Seguradoras */
.seguradoras-section {
    padding: 80px 5%;
    background: var(--white);
    text-align: center;
}

.seguradoras-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.seguradoras-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.seguradoras-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.elementor-image-carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.swiper-slide-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 0 10px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.swiper-slide-inner:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.swiper-slide-image {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.4s ease;
}

.swiper-slide:hover .swiper-slide-image {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.elementor-swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
    transition: all 0.3s ease;
}

.elementor-swiper-button:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4);
}

.elementor-swiper-button-prev {
    left: -25px;
}

.elementor-swiper-button-next {
    right: -25px;
}

.swiper-pagination {
    bottom: 0 !important;
    text-align: center;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 0.5;
    margin: 0 5px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    transform: scale(1.3);
}

/* Services Section */
.services {
    padding: 80px 5%;
    background: var(--light-gray);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 5%;
    background: var(--white);
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.perguntas {
    list-style-type: none;
    padding: 0;
}

.perguntas li {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 2px solid var(--light-gray);
}

.pergunta-titulo {
    margin: 0;
    padding: 20px;
    cursor: pointer;
    background: var(--white);
    font-size: 18px;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    color: var(--primary);
    font-weight: 600;
}

.pergunta-titulo:hover {
    background: var(--light-gray);
}

.pergunta-titulo i {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: var(--accent);
}

.perguntas li.aberta .pergunta-titulo i {
    transform: translateY(-50%) rotate(180deg);
}

.pergunta-descricao {
    display: none;
    padding: 0 20px 20px;
    text-align: left;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 5%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text .text-h4 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-img {
    flex: 1;
    max-width: 500px;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Contact Form */
.form {
    padding: 80px 5%;
    background: var(--white);
}

.form .container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    font-weight: 500;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    text-align: center;
    font-weight: 500;
    animation: slideDown 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-message.success {
    background: #28a745;
    color: white;
}

.form-message.error {
    background: #dc3545;
    color: white;
}

.form-message.info {
    background: #17a2b8;
    color: white;
}

@keyframes slideDown {
    from { 
        opacity: 0; 
        transform: translateY(-20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Footer */
.rodape {
    background: var(--primary);
    color: var(--white);
    padding: 2rem 5%;
    text-align: center;
}

.rodape p {
    margin: 0;
    font-size: 16px;
}

/* Scroll Hint */
.hint {
    display: none;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.scroll-to-top:hover {
    background: var(--accent);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu {
        display: flex;
    }
    
    .menu.ativo .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu.ativo .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu.ativo .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        transition: 0.3s;
        padding-top: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.ativo {
        right: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .home {
        flex-direction: column;
        text-align: center;
        padding: 120px 5% 50px;
        gap: 3rem;
    }
    
    .home-text h1 {
        font-size: 2.5rem;
    }
    
    .about {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hint::after {
        display: none;
    }
    
    /* Carrossel responsivo */
    .elementor-swiper-button {
        display: none;
    }
    
    .swiper-slide-inner {
        margin: 0 5px;
        height: 100px;
        padding: 15px;
    }
    
    .swiper-slide-image {
        max-width: 120px;
        max-height: 60px;
    }
    
    .seguradoras-section {
        padding: 60px 5%;
    }
    
    .seguradoras-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .swiper-slide-inner {
        height: 80px;
        padding: 10px;
    }
    
    .swiper-slide-image {
        max-width: 100px;
        max-height: 50px;
    }
}

/* Animations */
.image-animation:hover {
    animation: scaleAnimation 0.5s ease;
}

@keyframes scaleAnimation {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Counter animation */
.counter {
    animation: countUp 2s ease-in-out;
}

/* Loading states */
body.loaded {
    opacity: 1;
}

/* Adicionar transições suaves para elementos animados */
.stat-card,
.service-card {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* WhatsApp Widget */
.wa-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Botão FAB Flutuante */
.wa-fab {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4),
              0 8px 24px rgba(0, 0, 0, 0.15);
  display: grid;
  place-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Efeito de pulse no botão */
.wa-fab::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.wa-fab:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5),
              0 12px 32px rgba(0, 0, 0, 0.2);
}

.wa-fab:active {
  transform: scale(0.95);
}

.wa-fab svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  color: #fff;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.wa-fab svg path {
  fill: #fff;
}

/* Painel do WhatsApp */
.wa-panel {
  position: absolute;
  right: 0;
  bottom: 80px;
  width: 340px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
              0 2px 8px rgba(0, 0, 0, 0.08);
  transform: scale(0.8) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom right;
}

.wa-widget.is-open .wa-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Header com gradiente */
.wa-header {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: #fff;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Efeito decorativo no header */
.wa-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.wa-title {
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Avatar do WhatsApp */
.wa-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.wa-avatar svg {
  width: 24px;
  height: 24px;
  fill: white;
  color: white;
}

.wa-avatar svg path {
  fill: white;
}

.wa-badge {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2cff77;
  box-shadow: 0 0 0 2px rgba(44, 255, 119, 0.2);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.wa-info {
  flex: 1;
}

.wa-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2px;
}

.wa-sub {
  font-size: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wa-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}

.wa-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

/* Corpo com papel de parede do WhatsApp */
.wa-body {
  padding: 20px 14px;
  min-height: 120px;
  background-color: #0a1014;
  position: relative;
  overflow: hidden;
}

/* Papel de parede personalizado - SUBSTITUA A URL ABAIXO */
.wa-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Cole a URL da sua imagem aqui: */
  background-image: url("assets/whatswall.jpg");
  /* Ajuste estas propriedades conforme necessário: */
  background-size: cover;        /* ou 'contain', 'auto', '100% 100%' */
  background-position: center;    /* ou 'top', 'bottom', 'left', 'right' */
  background-repeat: no-repeat;   /* ou 'repeat', 'repeat-x', 'repeat-y' */
  opacity: 0.8;                  /* Ajuste a opacidade (0.0 a 1.0) */
  pointer-events: none;
}

.wa-bubble {
  display: inline-block;
  background: #fff;
  border-radius: 8px 8px 8px 0;
  padding: 12px 14px;
  font-size: 14px;
  color: #303030;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 85%;
  line-height: 1.5;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wa-bubble::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent #fff transparent;
}

.wa-bubble-time {
  font-size: 11px;
  color: #667781;
  margin-top: 4px;
  text-align: right;
  opacity: 0.7;
}

/* Footer */
.wa-footer {
  padding: 14px;
  background: #f0f2f5;
  border-top: 1px solid #e9edef;
}

.wa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.wa-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.wa-cta:active {
  transform: translateY(0);
}

.wa-cta svg {
  width: 20px;
  height: 20px;
  fill: white;
  color: white;
}

.wa-cta svg path {
  fill: white;
}

/* Responsivo */
@media (max-width: 480px) {
  .wa-widget {
    right: 16px;
    bottom: 16px;
  }

  .wa-panel {
    width: calc(100vw - 32px);
    max-width: 340px;
  }

  .wa-fab {
    width: 56px;
    height: 56px;
  }

  .wa-fab svg {
    width: 28px;
    height: 28px;
  }
}
