/* ============================================
   ORÇAMENTO CSS - ISOLADO E INDEPENDENTE
   ============================================ */

/* Reset e Variáveis CSS */
:root {
  --bg: #ffffff;
  --bg-muted: #fafafa;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #666666;
  --border: #e5e5e5;
  --shadow: none;
  --primary: #1a1a1a;
  --primary-700: #000000;
  --accent: #111111;
  --transition: all 0.2s ease;
}

* { 
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}

html, body { 
  height: 100%; 
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  padding-top: 0;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.7;
    padding-top: 0;
  }
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ============================================
   HEADER - Estilos Mínimos Necessários
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 48px;
  position: relative;
}

@media (max-width: 768px) {
  .header-inner {
    height: 64px;
    gap: 16px;
  }
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
}

.brand-name {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 0;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: var(--transition);
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
}

.header-search-container {
  flex: 1;
  max-width: 500px;
  position: relative;
}

@media (max-width: 1024px) {
  .header-search-container {
    display: none;
  }
}

.global-search {
  position: relative;
}

.global-search-input {
  width: 100%;
  padding: 12px 16px 12px 48px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  background: #ffffff;
  color: var(--text);
  font-size: 13px;
  transition: border-color 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center;
  background-size: 16px;
}

.global-search-input:focus {
  outline: none;
  border-color: var(--text);
}

.global-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 500px;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 200;
  border: 1px solid #e5e5e5;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  padding: 12px 0;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
  margin-top: 80px;
  position: relative;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.breadcrumb a {
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

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

.breadcrumb span:not([id]) {
  color: var(--muted);
}

.breadcrumb span[id] {
  color: var(--muted);
}

@media (max-width: 768px) {
  .breadcrumb {
    margin-top: 64px;
    font-size: 12px;
    padding: 10px 0;
  }
}

/* ============================================
   SECTION BUDGET
   ============================================ */

.section {
  padding: 60px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
}

.section-budget {
  background: #fafafa;
  min-height: calc(100vh - 96px);
}

.section-head {
  margin-bottom: 48px;
}

.section-head h2 {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text);
}

@media (max-width: 768px) {
  .section-head h2 {
    font-size: 28px;
  }
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .section-sub {
    font-size: 14px;
  }
}

/* ============================================
   PRODUTO SELECIONADO
   ============================================ */

.selected-product {
  margin-bottom: 40px;
  max-width: 100%;
  animation: fadeIn 0.4s ease-out;
}

.selected-product-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  transition: var(--transition);
}

.selected-product-content:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.selected-product-img {
  width: 240px;
  height: 240px;
  max-width: 100%;
  max-height: 240px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  border-radius: 0;
  background: #fafafa;
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}

.selected-product-img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.selected-product-img[src=""] {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.selected-product-img[src=""]::after {
  content: '📷';
  font-size: 48px;
  opacity: 0.3;
}

.selected-product-content > div {
  flex: 1;
  min-width: 0;
}

.selected-product-content h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.selected-product-type {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 0;
}

.selected-product-type-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 400;
}

.selected-product-type-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.selected-product-description {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.selected-product-story {
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.7;
  font-size: 14px;
}

.selected-product-specs {
  margin: 16px 0 0;
  padding: 16px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 0;
}

.selected-product-specs dt {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.selected-product-specs dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.selected-product-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 768px) {
  .selected-product-content {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
  
  .selected-product-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-height: none;
  }

  .selected-product-content h3 {
    font-size: 20px;
  }
}

/* ============================================
   LAYOUT DO FORMULÁRIO
   ============================================ */

.budget-layout {
  display: block;
}

.budget-form-wrapper {
  padding: 48px;
  border-radius: 0;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

@media (min-width: 1440px) {
  .budget-form-wrapper {
    max-width: 1400px;
    padding: 64px;
  }
}

@media (max-width: 1024px) {
  .budget-form-wrapper {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .budget-form-wrapper {
    padding: 24px 20px;
  }
}

.budget-form {
  margin-top: 0;
  display: grid;
  gap: 40px;
}

/* Agrupar seções visualmente */
.budget-form > * {
  position: relative;
}

.budget-form > *:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 1px;
  background: #f0f0f0;
}

@media (max-width: 768px) {
  .budget-form {
    gap: 32px;
  }

  .budget-form > *:not(:last-child)::after {
    bottom: -16px;
  }
}

/* ============================================
   CAMPOS DO FORMULÁRIO
   ============================================ */

.form-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  border: 1px solid #e5e5e5;
  background: #ffffff;
  color: var(--text);
  padding: 14px 16px;
  border-radius: 0;
  font-size: 16px;
  font-family: inherit;
  font-weight: 300;
  transition: border-color 0.2s ease;
  min-height: 44px;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--text);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.field-hidden {
  display: none;
}

.field-readonly {
  display: grid;
  gap: 8px;
}

.field-note {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}

.pill {
  display: inline-block;
  padding: 10px 18px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  text-align: center;
}

/* Campos com botão de ajuda */
.field-with-button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}

@media (max-width: 480px) {
  .field-with-button {
    grid-template-columns: 1fr;
  }
}

.btn-help {
  white-space: nowrap;
  padding: 14px 20px;
  min-height: 44px;
}

/* Grid de dois campos lado a lado */
.field-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 480px) {
  .field-grid-two {
    grid-template-columns: 1fr;
  }
}

.input-size {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}

/* ============================================
   SELEÇÃO DE METAL
   ============================================ */

.metal-selection {
  margin: 0;
}

.metal-options-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 480px) {
  .metal-options-form {
    grid-template-columns: 1fr;
  }
}

.metal-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: 2px solid #e5e5e5;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  background: #ffffff;
  min-height: 60px;
}

.metal-option:hover {
  border-color: var(--text);
  background: var(--bg-muted);
}

.metal-option input[type="radio"] {
  margin: 0;
  accent-color: var(--text);
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.metal-option span {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  flex: 1;
}

.metal-option:has(input[type="radio"]:checked) {
  border-color: var(--text);
  background: var(--bg-muted);
}

.metal-option:has(input[type="radio"]:checked) span {
  font-weight: 500;
  color: var(--text);
}

/* ============================================
   SELEÇÃO DE PEDRAS
   ============================================ */

.stone-selection {
  margin: 0;
}

.btn-compare-stones {
  margin-top: 12px;
}

/* ============================================
   SEÇÃO DE GRAVAÇÃO
   ============================================ */

.engraving-section {
  padding: 32px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 0;
}

@media (max-width: 768px) {
  .engraving-section {
    padding: 24px;
  }
}

.engraving-section h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

.engraving-section > p {
  margin: 0 0 24px;
  font-size: 13px;
  color: var(--muted);
}

.engraving-section small {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

#engravingContainer {
  display: grid;
  gap: 24px;
}

.engraving-item {
  display: grid;
  gap: 16px;
}

.engraving-preview {
  padding: 32px;
  background: #ffffff;
  border: 2px solid var(--border);
  border-radius: 0;
  text-align: center;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.engraving-preview[data-metal="yellow"] {
  background: linear-gradient(135deg, #f4d03f 0%, #f39c12 100%);
  border-color: #d68910;
}

.engraving-preview[data-metal="white"] {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
  border-color: #95a5a6;
}

.engraving-preview[data-metal="rose"] {
  background: linear-gradient(135deg, #f8c471 0%, #e67e22 100%);
  border-color: #d35400;
}

.engraving-preview span {
  font-family: 'Great Vibes', cursive;
  font-size: 36px;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 2px;
  transition: var(--transition);
}

.engraving-preview span[data-placeholder] {
  opacity: 0.5;
  font-style: italic;
}

@media (max-width: 768px) {
  .engraving-preview {
    padding: 24px;
    min-height: 100px;
  }

  .engraving-preview span {
    font-size: 28px;
  }
}

/* ============================================
   BOTÕES
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid var(--text);
  background: var(--text);
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
  min-height: 44px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn:hover {
  background: var(--primary-700);
  border-color: var(--primary-700);
}

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

.btn-primary {
  background: var(--text);
  color: #ffffff;
  border-color: var(--text);
}

.btn-primary:hover {
  background: var(--primary-700);
  border-color: var(--primary-700);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-loading {
  position: relative;
  color: transparent;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--bg-muted);
  border-color: var(--text);
}

.btn-full {
  width: 100%;
}

.budget-actions {
  margin-top: 8px;
}

/* ============================================
   NOTA DE PRIVACIDADE
   ============================================ */

.privacy-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

.privacy-note a {
  color: var(--text);
  text-decoration: underline;
}

.privacy-note a:hover {
  opacity: 0.7;
}

/* ============================================
   FOOTER - Estilos Mínimos Necessários
   ============================================ */

.site-footer {
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  padding: 60px 0 40px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

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

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 24px;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand .logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-brand .logo.small {
  width: 40px;
  height: 40px;
}

.footer-brand span {
  font-size: 13px;
  color: var(--muted);
}

.footer-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.footer-ig,
.footer-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px !important;
  height: 44px !important;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #ffffff;
  transition: var(--transition);
  text-decoration: none;
  flex-shrink: 0;
  overflow: hidden;
}

.footer-ig:hover,
.footer-wa:hover {
  background: var(--bg-muted);
  border-color: var(--text);
  opacity: 0.8;
}

.footer-ig img,
.footer-wa img,
.footer-ig .ig-icon,
.footer-wa .wa-icon {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-secondary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #f0f0f0;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .footer-secondary {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-note {
  margin: 0;
  font-size: 12px;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

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

/* ============================================
   ESTADOS DE LOADING
   ============================================ */

.loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--muted);
  font-size: 14px;
}

.metal-options-form p {
  margin: 0;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* ============================================
   VALIDAÇÃO E FEEDBACK
   ============================================ */

.field input:invalid:not(:placeholder-shown),
.field select:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: #e74c3c;
}

.field input:valid:not(:placeholder-shown),
.field select:valid:not(:placeholder-shown),
.field textarea:valid:not(:placeholder-shown) {
  border-color: #27ae60;
}

.field input:focus:invalid,
.field select:focus:invalid,
.field textarea:focus:invalid {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.field input:focus:valid,
.field select:focus:valid,
.field textarea:focus:valid {
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* Mensagens de erro */
.field-error {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #e74c3c;
  line-height: 1.4;
}

.field-success {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #27ae60;
  line-height: 1.4;
}

/* ============================================
   ACESSIBILIDADE
   ============================================ */

/* Foco visível para navegação por teclado */
*:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

/* Melhorar contraste em elementos interativos */
.btn:focus-visible,
.metal-option:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

/* Skip link para acessibilidade */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--text);
  color: #ffffff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   RESPONSIVIDADE ADICIONAL
   ============================================ */

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .budget-form-wrapper {
    padding: 20px 16px;
  }

  .form-grid {
    gap: 20px;
  }

  .budget-form {
    gap: 28px;
  }

  .selected-product-content {
    padding: 20px;
  }

  .engraving-section {
    padding: 20px;
  }
}

/* Otimização para telas muito grandes */
@media (min-width: 1920px) {
  .budget-form-wrapper {
    max-width: 1600px;
  }
}

/* ============================================
   CORREÇÃO ESPECÍFICA PARA ÍCONES DO FOOTER
   ============================================ */

.site-footer .footer-ig,
.site-footer .footer-wa {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  padding: 12px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.site-footer .footer-ig img,
.site-footer .footer-wa img,
.site-footer .footer-ig .ig-icon,
.site-footer .footer-wa .wa-icon {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-sizing: border-box !important;
}

