/*
Theme Name:  SYSPRO GmbH
Theme URI:   https://syspro-gmbh.de
Author:      SYSPRO GmbH
Description: Professionelles Website-Theme für SYSPRO Systemhaus für CAD- und Netzwerklösungen GmbH, Frankfurt
Version:     1.0.0
License:     Proprietary
Text Domain: syspro
*/

/* ─── Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Barlow:wght@300;400;500&display=swap');

/* ─── Variables ─── */
:root {
  --navy:        #003a78;
  --navy-dark:   #002456;
  --navy-mid:    #0050a0;
  --white:       #ffffff;
  --off-white:   #f4f7fb;
  --accent:      #e8a800;
  --accent-light:#ffd55a;
  --text:        #1a2a3a;
  --text-light:  #4a6070;
  --border:      #d0dbe8;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }

/* ─── WordPress Alignment Classes ─── */
.alignleft  { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
#syspro-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 88px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.syspro-logo-wrap { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.syspro-logo-wrap img { width: 72px; height: 72px; object-fit: contain; border-radius: 4px; }
.syspro-logo-text {
  font-family: 'Oswald', sans-serif; font-weight: 400; font-size: 14px;
  color: rgba(255,255,255,0.8); letter-spacing: 0.04em; line-height: 1.4; max-width: 220px;
}

/* WordPress nav menu */
#syspro-header nav#site-navigation ul {
  display: flex; gap: 4px; align-items: center; list-style: none; margin: 0; padding: 0;
}
#syspro-header nav#site-navigation ul li a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-family: 'Oswald', sans-serif; font-weight: 400; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 3px; display: block;
  transition: background 0.2s, color 0.2s;
}
#syspro-header nav#site-navigation ul li a:hover,
#syspro-header nav#site-navigation ul li.current-menu-item > a {
  background: rgba(255,255,255,0.1); color: var(--white);
}
#syspro-header nav#site-navigation ul li.menu-cta > a {
  background: var(--accent); color: var(--navy-dark) !important;
  font-weight: 600; margin-left: 8px;
}
#syspro-header nav#site-navigation ul li.menu-cta > a:hover {
  background: var(--accent-light);
}

/* Hamburger */
.syspro-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.syspro-hamburger span { display: block; width: 24px; height: 2px; background: white; transition: 0.3s; }

/* ─── Page offset ─── */
.syspro-page { padding-top: 88px; min-height: calc(100vh - 88px); }

/* ═══════════════════════════════════════
   HERO (used on front page)
═══════════════════════════════════════ */
.syspro-hero {
  min-height: calc(100vh - 88px); background: var(--navy-dark);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.syspro-hero::before {
  content: ''; position: absolute; top: -10%; right: -5%;
  width: 55%; height: 120%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 60%, transparent 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%); opacity: 0.6;
}
.syspro-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.syspro-hero-content {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
  padding: 80px 48px; width: 100%;
}
.syspro-hero-tag {
  display: inline-block; font-family: 'Oswald', sans-serif; font-weight: 400;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent);
  padding: 6px 14px; border-radius: 2px; margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}
.syspro-hero h1 {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(52px, 7vw, 92px); line-height: 0.95;
  color: var(--white); margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.syspro-hero h1 span { color: var(--accent); }
.syspro-hero-sub {
  font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.7);
  max-width: 520px; line-height: 1.7; margin-bottom: 48px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.syspro-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
.syspro-hero-stats {
  display: flex; gap: 48px; margin-top: 80px; padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.syspro-stat-num {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 42px; color: var(--accent); line-height: 1;
}
.syspro-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-primary, a.btn-primary {
  background: var(--accent); color: var(--navy-dark) !important;
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 3px; text-decoration: none;
  transition: background 0.2s, transform 0.2s; display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-outline, a.btn-outline {
  background: transparent; color: var(--white) !important;
  font-family: 'Oswald', sans-serif; font-weight: 400; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 36px; border: 1.5px solid rgba(255,255,255,0.4); border-radius: 3px;
  text-decoration: none; transition: border-color 0.2s, background 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-dark, a.btn-dark {
  background: var(--navy-dark); color: var(--white) !important;
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 3px; text-decoration: none;
  transition: background 0.2s; display: inline-block; border: none; cursor: pointer;
}
.btn-dark:hover { background: var(--navy); }

/* ═══════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════ */
.syspro-container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.syspro-section { padding: 90px 0; }
.syspro-section-dark { background: var(--navy-dark); padding: 90px 0; }
.syspro-section-offwhite { background: var(--off-white); padding: 90px 0; }
.syspro-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.syspro-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.syspro-grid-2-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.section-label {
  font-family: 'Oswald', sans-serif; font-weight: 400; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px; display: block;
}
.section-title {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(36px, 4vw, 56px); line-height: 1.05;
  color: var(--navy-dark); margin-bottom: 20px;
}
.section-title-light { color: var(--white); }
.section-body { font-size: 17px; font-weight: 300; color: var(--text-light); line-height: 1.75; max-width: 640px; }
.section-body-light { color: rgba(255,255,255,0.65); }

/* ═══════════════════════════════════════
   PAGE HERO (sub-pages)
═══════════════════════════════════════ */
.syspro-page-hero {
  background: var(--navy-dark); padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.syspro-page-hero::before {
  content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background: linear-gradient(135deg, var(--navy-mid), transparent); opacity: 0.4;
}
.syspro-page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.syspro-page-hero-inner { position: relative; z-index: 2; }
.syspro-page-hero h1 {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(42px, 5vw, 72px); color: var(--white); line-height: 1; margin-bottom: 16px;
}
.syspro-page-hero p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.7; }
.syspro-breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 24px; font-size: 13px; }
.syspro-breadcrumb a { color: var(--accent); text-decoration: none; }
.syspro-breadcrumb span { color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════ */
.syspro-card {
  background: var(--off-white); padding: 48px 40px;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.syspro-card:hover { background: var(--navy-dark); }
.syspro-card:hover .card-title, .syspro-card:hover .card-body,
.syspro-card:hover .card-list li { color: rgba(255,255,255,0.85); }
.syspro-card:hover .card-icon { background: var(--accent); }
.syspro-card:hover .card-num { color: rgba(255,255,255,0.06); }
.syspro-card:hover .card-download { color: var(--accent); border-color: var(--accent); }
.card-num {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 100px;
  color: rgba(0,0,0,0.05); position: absolute; top: 16px; right: 20px;
  line-height: 1; transition: color 0.3s; pointer-events: none;
}
.card-icon {
  width: 52px; height: 52px; background: var(--navy); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  transition: background 0.3s;
}
.card-icon svg { width: 26px; height: 26px; fill: var(--white); }
.card-title {
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 24px;
  color: var(--navy-dark); margin-bottom: 12px; transition: color 0.3s; position: relative; z-index: 1;
}
.card-body {
  font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px;
  transition: color 0.3s; position: relative; z-index: 1;
}
.card-list { list-style: none; position: relative; z-index: 1; }
.card-list li {
  font-size: 14px; color: var(--text-light); padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex; align-items: center; gap: 8px; transition: color 0.3s;
}
.card-list li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.card-download {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy-dark);
  text-decoration: none; border-bottom: 2px solid var(--accent);
  padding-bottom: 2px; transition: color 0.2s; position: relative; z-index: 1;
}

/* ═══════════════════════════════════════
   CAD BOX
═══════════════════════════════════════ */
.syspro-cad-box {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 48px;
}
.syspro-cad-box h3 {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 32px; color: var(--accent); margin-bottom: 24px;
}
.cad-box-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.cad-box-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.cad-box-list li .check {
  width: 22px; height: 22px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 11px; color: var(--navy-dark); font-weight: 900; margin-top: 1px;
}

/* ═══════════════════════════════════════
   FEATURE LIST
═══════════════════════════════════════ */
.feature-list { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-dot {
  width: 40px; height: 40px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy-dark);
}
.feature-text strong { display: block; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 18px; color: var(--white); margin-bottom: 4px; }
.feature-text span { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ═══════════════════════════════════════
   3CX CARDS
═══════════════════════════════════════ */
.tcx-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tcx-card {
  background: var(--white); border: 1.5px solid var(--border);
  padding: 28px 24px; border-radius: 4px; transition: border-color 0.2s, transform 0.2s;
}
.tcx-card:hover { border-color: var(--navy); transform: translateY(-4px); }
.tcx-card-icon { font-size: 28px; margin-bottom: 12px; }
.tcx-card h4 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 18px; color: var(--navy-dark); margin-bottom: 8px; }
.tcx-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.syspro-cta-band { background: var(--accent); padding: 60px 0; text-align: center; }
.syspro-cta-band h2 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 40px; color: var(--navy-dark); margin-bottom: 12px; }
.syspro-cta-band p { font-size: 16px; color: rgba(0,30,60,0.7); margin-bottom: 32px; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-items { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.08); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.contact-info strong { display: block; font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.contact-info a, .contact-info span { font-size: 16px; color: rgba(255,255,255,0.8); text-decoration: none; }
.contact-info a:hover { color: var(--accent); }
.syspro-contact-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 48px; }
.syspro-contact-form h3 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 26px; color: var(--white); margin-bottom: 28px; }

/* WordPress contact form overrides (CF7, WPForms etc.) */
.syspro-contact-form .wpcf7-form label,
.syspro-contact-form .wpforms-field-label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.syspro-contact-form input[type="text"],
.syspro-contact-form input[type="email"],
.syspro-contact-form textarea,
.syspro-contact-form select { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 3px; padding: 14px 16px; color: var(--white); font-family: 'Barlow', sans-serif; font-size: 15px; transition: border-color 0.2s; outline: none; }
.syspro-contact-form input:focus,
.syspro-contact-form textarea:focus { border-color: var(--accent); }
.syspro-contact-form textarea { height: 120px; resize: vertical; }
.syspro-contact-form input[type="submit"],
.syspro-contact-form .wpcf7-submit { width: 100%; background: var(--accent); color: var(--navy-dark); font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase; padding: 18px; border: none; border-radius: 3px; cursor: pointer; transition: background 0.2s; margin-top: 8px; }
.syspro-contact-form input[type="submit"]:hover { background: var(--accent-light); }

/* ═══════════════════════════════════════
   VALUES & TEAM
═══════════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.value-item { background: var(--off-white); padding: 40px; }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 22px; color: var(--navy-dark); margin-bottom: 10px; }
.value-text { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ═══════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════ */
.syspro-legal { max-width: 860px; }
.syspro-legal h2 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 26px; color: var(--navy-dark); margin: 40px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
.syspro-legal p, .syspro-legal li { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 12px; }
.syspro-legal ul { margin-left: 24px; margin-bottom: 16px; }
.syspro-legal a { color: var(--navy); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#syspro-footer { background: #001530; padding: 48px 0 24px; color: rgba(255,255,255,0.5); }
.syspro-footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 28px; }
.syspro-footer-brand { display: flex; align-items: center; gap: 14px; }
.syspro-footer-brand img { width: 60px; height: 60px; object-fit: contain; border-radius: 4px; }
.syspro-footer-tagline { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 8px; max-width: 240px; line-height: 1.5; }
.syspro-footer-links { display: flex; gap: 48px; }
.syspro-footer-col h4 { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.syspro-footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.syspro-footer-col a:hover { color: var(--accent); }
.syspro-footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.syspro-footer-legal { display: flex; gap: 24px; }
.syspro-footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.syspro-footer-legal a:hover { color: var(--accent); }

/* WordPress widgets in footer */
#syspro-footer .widget-title { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
#syspro-footer .widget ul { list-style: none; padding: 0; }
#syspro-footer .widget ul li a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 14px; display: block; margin-bottom: 8px; }
#syspro-footer .widget ul li a:hover { color: var(--accent); }

/* ═══════════════════════════════════════
   GUTENBERG BLOCK OVERRIDES
═══════════════════════════════════════ */
.wp-block-heading { font-family: 'Oswald', sans-serif; }
.wp-block-button__link { font-family: 'Oswald', sans-serif !important; letter-spacing: 0.06em; text-transform: uppercase; }
.is-style-fill .wp-block-button__link { background: var(--accent); color: var(--navy-dark); }
.is-style-outline .wp-block-button__link { border-color: var(--navy-dark); color: var(--navy-dark); }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  #syspro-header { padding: 0 20px; height: 72px; }
  .syspro-page { padding-top: 72px; }
  #syspro-header nav#site-navigation { display: none; }
  #syspro-header nav#site-navigation.open { display: block; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy-dark); padding: 20px; z-index: 999; }
  #syspro-header nav#site-navigation.open ul { flex-direction: column; }
  .syspro-hamburger { display: flex; }
  .syspro-container { padding: 0 20px; }
  .syspro-hero-content { padding: 40px 20px; }
  .syspro-hero-stats { gap: 24px; }
  .syspro-grid-2, .syspro-grid-3, .syspro-grid-2-2, .values-grid { grid-template-columns: 1fr; }
  .tcx-cards { grid-template-columns: 1fr 1fr; }
  .syspro-section, .syspro-section-dark, .syspro-section-offwhite { padding: 60px 0; }
  .syspro-footer-top { flex-direction: column; }
  .syspro-footer-links { flex-wrap: wrap; gap: 32px; }
  .syspro-footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .tcx-cards { grid-template-columns: 1fr; }
  .syspro-hero-btns { flex-direction: column; }
}

/* ═══════════════════════════════════════
   WHATSAPP BUTTON
═══════════════════════════════════════ */
.btn-whatsapp, a.btn-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-whatsapp:hover { background: #1ebe57; }
.btn-whatsapp svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }
