/* ==========================================================================
   CSS PRINCIPAL - SENDACALMA
   Estilos premium de alta fidelidad, diseñados para inducir calma y paz.
   Colores: Índigos profundos, Lavanda relajante y Teal curativo.
   ========================================================================== */

:root {
  --bg-primary: #0a0c16;
  --bg-secondary: #121528;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #718096;
  
  /* Gradientes y Colores de Acento */
  --accent-teal: #4fd1c5;
  --accent-lavender: #b794f4;
  --accent-rose: #f687b3;
  --accent-danger: #fc8181;
  
  --grad-main: linear-gradient(135deg, #121528 0%, #0a0c16 100%);
  --grad-teal: linear-gradient(135deg, #4fd1c5 0%, #319795 100%);
  --grad-lavender: linear-gradient(135deg, #b794f4 0%, #805ad5 100%);
  --grad-rose: linear-gradient(135deg, #f687b3 0%, #d53f8c 100%);
  --grad-danger: linear-gradient(135deg, #fc8181 0%, #e53e3e 100%);
  
  /* Efectos Glassmorphic */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --glass-blur: blur(16px);
  
  /* Fuentes */
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-secondary: 'Plus Jakarta Sans', sans-serif;
}

/* Reset de Estilos Básicos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; /* Quita el destello al tocar en móvil */
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

/* Luces de Fondo Ambientales (Decorativas para Wow Effect) */
body::before, body::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  z-index: -1;
}

body::before {
  top: 10%;
  left: -50px;
  background-color: var(--accent-lavender);
}

body::after {
  bottom: 10%;
  right: -50px;
  background-color: var(--accent-teal);
}

/* Contenedor de la Aplicación (Simula Pantalla Móvil en Desktop) */
.app-container {
  width: 100%;
  max-width: 480px;
  height: 100vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  background: var(--grad-main);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

/* Bordes redondeados simulados solo en pantallas desktop */
@media (min-width: 481px) {
  .app-container {
    height: 850px;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Estado de Conexión */
.connection-badge {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #48bb78;
  box-shadow: 0 0 8px #48bb78;
  display: inline-block;
}

.connection-badge.offline .badge-dot {
  background-color: #ecc94b;
  box-shadow: 0 0 8px #ecc94b;
}

.connection-badge.offline {
  border-color: rgba(236, 201, 75, 0.4);
}

/* Vistas de Pantalla */
.screen {
  flex: 1;
  display: none;
  flex-direction: column;
  padding: 24px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.screen.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Cabecera / Header */
.header {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 24px;
}

.logo-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.logo-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 300;
}

/* Elemento de Tarjeta de Vidrio (Glassmorphic Card) */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--glass-shadow);
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* Elementos de Entrada de Datos */
.input-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.row {
  display: flex;
  gap: 16px;
}

.col {
  flex: 1;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

input[type="text"],
input[type="password"],
input[type="tel"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

input:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 10px rgba(79, 209, 197, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.help-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Selector Premium */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper::after {
  content: "▼";
  font-size: 0.8rem;
  color: var(--text-secondary);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 40px 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

select:focus {
  outline: none;
  border-color: var(--accent-teal);
}

/* Botones */
.btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-main);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--grad-teal);
  color: #052e2b;
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(79, 209, 197, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-danger {
  background: var(--grad-danger);
  color: white;
}

/* Barra de Navegación Superior */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 12px;
}

.partner-status {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.partner-status strong {
  color: var(--accent-teal);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-icon:active {
  transform: scale(0.92);
  background: rgba(255, 255, 255, 0.1);
}

/* Área de Chat de Acompañamiento */
.chat-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 12px;
}

/* Barra de Chat Escrito */
.chat-input-container {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 6px 6px 6px 16px;
  margin-bottom: 20px;
  align-items: center;
  transition: all 0.3s ease;
}

.chat-input-container:focus-within {
  border-color: var(--accent-teal);
  box-shadow: 0 0 12px rgba(79, 209, 197, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.chat-input-container input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  padding: 8px 0;
}

.chat-input-container input:focus {
  outline: none;
}

.btn-send-chat {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-teal);
  color: #052e2b;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-send-chat:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(79, 209, 197, 0.3);
}

.btn-send-chat:active {
  transform: scale(0.95);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
  /* Scrollbar estilización */
  scrollbar-width: none;
}

.chat-messages::-webkit-scrollbar {
  display: none;
}

.message {
  display: flex;
  max-width: 85%;
  animation: messageAppear 0.3s ease forwards;
}

@keyframes messageAppear {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.message.partner {
  align-self: flex-start;
}

.message.user {
  align-self: flex-end;
}

.message .bubble {
  padding: 14px 18px;
  border-radius: 20px;
  font-size: 0.95rem;
  line-height: 1.45;
  font-family: var(--font-secondary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.message.partner .bubble {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #f7fafc;
  border-top-left-radius: 4px;
}

.message.user .bubble {
  background: var(--grad-lavender);
  color: white;
  border-top-right-radius: 4px;
}

/* Indicador de Escritura */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  border-top-left-radius: 4px;
  width: fit-content;
  margin-top: 8px;
  animation: messageAppear 0.3s ease;
}

.typing-indicator span {
  width: 7px;
  height: 7px;
  background-color: var(--accent-teal);
  border-radius: 50%;
  display: inline-block;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1.0); }
}

/* Área de Voz (Botón de Micrófono Mic) */
.voice-trigger-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  gap: 12px;
}

.btn-talk {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--grad-teal);
  border: none;
  color: #052e2b;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(79, 209, 197, 0.3);
}

.btn-talk:active {
  transform: scale(0.92);
}

/* Anillo de pulsación sutil al estar inactivo */
.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px solid rgba(79, 209, 197, 0.4);
  animation: pulse-ring-glow 3s infinite;
  pointer-events: none;
}

@keyframes pulse-ring-glow {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Estado escuchando / grabando */
.btn-talk.recording {
  background: var(--grad-rose);
  color: white;
  box-shadow: 0 0 30px rgba(246, 135, 179, 0.6);
}

.btn-talk.recording .pulse-ring {
  border-color: rgba(246, 135, 179, 0.6);
  animation: pulse-ring-glow 1.5s infinite;
}

.talk-instructions {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.talk-instructions.recording {
  color: var(--accent-rose);
  font-weight: 600;
}

/* Controles de Herramientas Rápidas de Grounding */
.quick-tools-container {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: auto;
}

.tool-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--text-primary);
}

.tool-card span {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

.tool-card:active {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.15);
}

.tool-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(79, 209, 197, 0.1);
  color: var(--accent-teal);
  display: flex;
  justify-content: center;
  align-items: center;
}

.tool-card:nth-child(2) .tool-icon {
  background: rgba(183, 148, 244, 0.1);
  color: var(--accent-lavender);
}

.tool-card.emergency .tool-icon {
  background: rgba(252, 129, 129, 0.1);
  color: var(--accent-danger);
}

.tool-card.emergency:active {
  background: rgba(252, 129, 129, 0.08);
  border-color: rgba(252, 129, 129, 0.3);
}

/* ==========================================================================
   ESTILOS DE MÓDULOS DE EJERCICIOS
   ========================================================================== */
.exercise-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 12px 0;
}

.exercise-instruction {
  font-size: 1.15rem;
  text-align: center;
  line-height: 1.5;
  color: var(--text-primary);
  max-width: 90%;
  min-height: 56px;
}

/* Burbuja de Respiración */
.breathing-circle-container {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.breathing-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(79, 209, 197, 0.2);
  transition: all 4s ease-in-out;
}

.breathing-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-teal) 0%, #319795 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #052e2b;
  box-shadow: 0 0 40px rgba(79, 209, 197, 0.4);
  transition: all 4s ease-in-out; /* Sincronizado para durar 4 segundos el ciclo */
  user-select: none;
}

/* Clases animadas de respiración manejadas por JS */
.breathing-circle-container.inhale .breathing-circle {
  width: 210px;
  height: 210px;
  box-shadow: 0 0 60px rgba(79, 209, 197, 0.8);
}

.breathing-circle-container.inhale .breathing-ring {
  transform: scale(1.1);
  border-color: rgba(79, 209, 197, 0.5);
}

.breathing-circle-container.hold .breathing-circle {
  animation: breathing-hold-pulse 2s infinite ease-in-out;
}

@keyframes breathing-hold-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); box-shadow: 0 0 50px rgba(183, 148, 244, 0.6); }
}

.breathing-circle-container.exhale .breathing-circle {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--accent-lavender) 0%, #6b46c1 100%);
  color: white;
  box-shadow: 0 0 30px rgba(183, 148, 244, 0.4);
}

.breathing-controls {
  width: 100%;
}

/* Grounding 5-4-3-2-1 */
.step-progress {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.step-dot.active {
  background: var(--grad-lavender);
  color: white;
  border-color: var(--accent-lavender);
  box-shadow: 0 0 10px rgba(183, 148, 244, 0.4);
  transform: scale(1.1);
}

.step-dot.completed {
  background: rgba(79, 209, 197, 0.15);
  color: var(--accent-teal);
  border-color: var(--accent-teal);
}

.grounding-card {
  width: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 12px;
  gap: 16px;
}

.grounding-icon-header {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(183, 148, 244, 0.1);
  color: var(--accent-lavender);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}

.grounding-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
}

.grounding-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.grounding-inputs-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 130px;
  overflow-y: auto;
  padding: 4px;
}

.grounding-input-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: messageAppear 0.2s ease forwards;
}

.grounding-input-item::before {
  content: "✔";
  color: var(--accent-teal);
  font-weight: bold;
}

.grounding-controls {
  width: 100%;
}

/* ==========================================================================
   MODALES Y UTILIDADES
   ========================================================================== */
.modal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 6, 12, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.modal-content {
  width: 100%;
  max-width: 380px;
  animation: modalScale 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalScale {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.emergency-title {
  color: var(--accent-danger);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.hidden {
  display: none !important;
}

/* Clases de Utilidad */
.hidden {
  display: none !important;
}

/* ==========================================================================
   ESTILOS DE MANOS LIBRES Y SOS MEJORADO
   ========================================================================== */
.handsfree-switch-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.handsfree-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Switch Deslizable */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2d3748;
  transition: .3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .slider {
  background: var(--grad-teal);
}

input:checked + .slider:before {
  transform: translateX(20px);
}

/* Badges de Contactos */
.contacts-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.contact-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--text-primary);
  animation: messageAppear 0.2s ease forwards;
}

.contact-badge .btn-delete-contact {
  background: none;
  border: none;
  color: var(--accent-rose);
  font-weight: bold;
  cursor: pointer;
  padding: 0 2px;
  font-size: 0.9rem;
}

/* Lista Vertical en Modal SOS */
.sos-contacts-vertical-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 4px;
}

.sos-contact-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--grad-danger);
  border: none;
  border-radius: 14px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-main);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
  transition: all 0.2s ease;
}

.sos-contact-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(229, 62, 62, 0.2);
}

.sos-contact-btn svg {
  opacity: 0.9;
}
