:root {

  /* ======= COLORES AYUNTAMIENTO DE JIUTEPEC ======= */

  --primary: #0A74D1;
  --secondary: #59D1C5;
  --accent: #F26A13;
  --pink: #D12C8F;
  --background: #0085ad;
  --background2: #001927;
  --card: rgba(255, 255, 255, .08);
  --text: #00c3ff;
  --text-muted: #ffffff;
  --border: rgba(255, 255, 255, .12);
  --shadow: 0 15px 45px rgba(0, 0, 0, .35);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg,
      #081B29 0%,
      #0B3046 40%,
      #123F5A 100%);
  background-attachment: fixed;
  line-height: 1.7;
  overflow-x: hidden;

}

h1,
h2,
h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  margin: 0;
  margin-bottom: 30px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-shadow:
    0 3px 10px rgba(0, 0, 0, .18);
}

#que-es h2::after {
  content: "";
  display: block;
  width: min(500px, 100%);
  height: 4px;
  margin-top: 18px;
  border-radius: 30px;
  background: linear-gradient(90deg,
      #00C8FF,
      #F26A13);
}

a {
  color: inherit;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width:480px) {
  .wrap {
    padding: 0 20px;
  }
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ---------- HEADER ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 40, 63, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, .22);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 35px;
  max-width: 1200px;
  margin: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
}

.brand .mark {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  color: var(--brass);
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-right: 14px;
}

.brand-mark img {
  width: 120%;
  height: 120%;
  object-fit: contain;
  border-radius: 100px;
  box-shadow:
    0 5px 12px rgba(0, 0, 0, .18);
}

.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-links a {
  position: relative;
  padding: 12px 18px;
  text-decoration: none;
  color: #DCE7F3;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition:
    color .35s,
    background .35s,
    transform .35s;
}

.nav-links a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .06);
  transform: translateY(-2px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 3px;
  background: linear-gradient(90deg,
      #59D1C5,
      #F26A13);
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg,
      #F26A13,
      #FF8C2B);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  box-shadow:
    0 0 12px rgba(242, 106, 19, .45),
    0 0 28px rgba(242, 106, 19, .25),
    0 10px 25px rgba(0, 0, 0, .30);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.nav-cta:hover {
  background: transparent;
  color: var(--brass);
}

@media (max-width:760px) {
  .nav-links {
    display: none;
  }

  .nav {
    padding: 14px 18px;
    gap: 10px;
  }

  .brand {
    font-size: 11px;
    gap: 8px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    margin-right: 6px;
  }

  .nav-cta {
    padding: 10px 16px;
    font-size: 12.5px;
    gap: 6px;
    white-space: nowrap;
  }
}

@media (max-width:400px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .brand {
    font-size: 11px;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 12px;
    white-space: normal;
  }
}

/* ---------- HERO ---------- */
.hero {
  padding: 88px 0 96px;
}

.hero h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.08;
  color: var(--text-light);
  margin-top: 14px;
}

.hero h1 em {
  font-style: italic;
  color: var(--brass);
}

.hero p.lead {
  margin-top: 22px;
  font-size: 17.5px;
  color: var(--text-muted);
  max-width: 46ch;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg,
      var(--accent),
      #ff8c38);
  color: white;
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(242, 106, 19, .35);
  transition: .35s;
  border: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(242, 106, 19, .45);
}

.btn-ghost {
  padding: 14px 22px;
  font-size: 15px;
  text-decoration: none;
  color: var(--text-light);
  border: 1px solid rgba(244, 240, 228, 0.3);
  border-radius: var(--radius);
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--text-light);
}

.hero-meta {
  display: flex;
  gap: 26px;
  margin-top: 38px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.hero-meta strong {
  display: block;
  color: var(--text-light);
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
}

/* certificate visual */
.cert-card {
  position: relative;
  padding: 38px 34px;
  /* Color tipo papel */
  background: linear-gradient(145deg,
      #FFFDF7 0%,
      #F7F0DF 45%,
      #EFE3C6 100%);
  color: #2F2B22;
  border-radius: 12px;
  border: 1px solid #D7C7A2;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, .30),
    inset 0 1px rgba(255, 255, 255, .7);
  transform: rotate(-1.2deg);
  overflow: hidden;
}

.cert-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(181, 154, 98, .55);
  border-radius: 6px;
  pointer-events: none;
}

.cert-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 15% 20%,
      rgba(255, 255, 255, .35),
      transparent 35%),

    radial-gradient(circle at 80% 75%,
      rgba(214, 190, 142, .18),
      transparent 45%);

  opacity: .7;
  pointer-events: none;
}

.cert-top {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-dim);
  display: flex;
  justify-content: space-between;
}

.cert-card h3 {
  color: #173B59;
  font-size: 30px;
  line-height: 1.2;
}

.cert-card p {
  color: #5B5143;
  font-size: 15px;
  line-height: 2;
}

.cert-line {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 2px dashed rgba(181, 154, 98, .45);
  color: #6B5B43;
}

.cert-elements .el {
  color: #4E4639;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(181, 154, 98, .35);
}

.cert-elements .el {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #4a4030;
  align-items: baseline;
}

.cert-elements .el b {
  color: #F26A13;
  font-weight: 700;
}

.seal {
  position: absolute;
  right: 22px;
  bottom: 20px;

  width: 105px;
  height: 105px;

  border-radius: 50%;

  background: linear-gradient(145deg,
      #E44B45 0%,
      #C62828 55%,
      #9E1B1B 100%);
  border: 3px solid #8A1111;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 3px 8px rgba(255, 255, 255, .25),
    inset 0 -6px 10px rgba(70, 0, 0, .35),
    0 12px 24px rgba(0, 0, 0, .25);
  transform: scale(0) rotate(-15deg);
  animation: stamp .5s cubic-bezier(.2, 1.6, .4, 1) .7s forwards;
  overflow: hidden;
}

.seal::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px dashed rgba(255, 255, 255, .55);
  border-radius: 50%;
}

.seal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
}

.seal span {
  position: relative;
  z-index: 2;
  color: #FFF8EE;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-align: center;
  transform: rotate(-12deg);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

@keyframes stamp {
  0% {
    transform: scale(2.4) rotate(-25deg);
    opacity: 0;
  }

  60% {
    transform: scale(0.85) rotate(-14deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(-14deg);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seal {
    animation: none;
    transform: scale(1) rotate(-14deg);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

@media (max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .cert-card {
    transform: none;
    max-width: 420px;
  }
}

@media (max-width:480px) {
  .hero {
    padding: 40px 0 48px;
  }

  .hero p.lead {
    max-width: none;
  }

  .hero-meta {
    gap: 20px 28px;
  }

  .cert-card {
    max-width: 100%;
    padding: 28px 22px;
  }

  .cert-card h3 {
    font-size: 22px;
  }

  .cert-top {
    flex-direction: column;
    gap: 4px;
  }

  .seal {
    width: 78px;
    height: 78px;
    right: 16px;
    bottom: 16px;
  }

  .seal span {
    font-size: 9.5px;
  }
}

/* ---------- SECTION GENERIC ---------- */
section {
  padding: 84px 0;
}

@media (max-width:480px) {
  section {
    padding: 52px 0;
  }
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

@media (max-width:480px) {
  .section-head {
    margin-bottom: 32px;
  }
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-top: 12px;
  color: var(--text-light);
}

.section-head p {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 16px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}

/* what is it */
.what-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: start;
}

.what-grid p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  text-justify: inter-word;
}

.fact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fact-list li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 25px;
  align-items: center;
  padding: 22px 26px;
  background: #0D3F57;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  color: #EAF4FA;
  line-height: 1.8;
  font-size: 16px;
}

.fact-list li .fk {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}

.fact-list li .fk::before {
  content: "";
  width: 5px;
  height: 32px;
  background: #F26A13;
  border-radius: 20px;
  margin-right: 14px;
  display: inline-block;
}

@media(max-width:768px) {
  .fact-list li {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }
}

@media (max-width:800px) {
  .what-grid {
    grid-template-columns: 1fr;
  }
}

/* audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(183, 192, 216, 0.16);
  border: 1px solid rgba(183, 192, 216, 0.16);
}

.audience-card {
  background: var(--ink);
  padding: 28px 22px;
}

@media (max-width:480px) {
  .audience-card {
    padding: 22px 18px;
  }
}

.audience-card .n {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--brass);
}

.audience-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  margin-top: 10px;
  color: var(--text-light);
  font-weight: 600;
}

.audience-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 8px;
}

@media (max-width:900px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

/* elementos de competencia */
.elements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(183, 192, 216, 0.16);
  border: 1px solid rgba(183, 192, 216, 0.16);
}

.element-card {
  background: var(--ink-2);
  padding: 32px 26px;
}

@media (max-width:480px) {
  .element-card {
    padding: 24px 18px;
  }
}

.element-card .n {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  color: var(--brass-dim);
  font-weight: 500;
}

.element-card h4 {
  font-size: 17px;
  color: var(--text-light);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  margin-top: 12px;
}

.element-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 10px;
}

@media (max-width:800px) {
  .elements-grid {
    grid-template-columns: 1fr;
  }
}

/* process */
.process {
  position: relative;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 30px 0;
  border-top: 1px solid rgba(183, 192, 216, 0.16);
}

@media (max-width:480px) {
  .process-item {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .process-num {
    font-size: 26px;
  }
}

.process-item:last-child {
  border-bottom: 1px solid rgba(183, 192, 216, 0.16);
}

.process-num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  color: var(--brass-dim);
  font-weight: 500;
}

.process-item h4 {
  font-size: 19px;
  color: var(--text-light);
  font-family: 'Fraunces', serif;
  font-weight: 600;
}

.process-item p {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 15px;
  max-width: 60ch;
}

/* pricing / investment */
.invest-card {
  background: var(--ink-2);
  border: 1px solid rgba(199, 154, 75, 0.3);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.invest-card h3 {
  font-size: 24px;
  color: var(--text-light);
}

.invest-card p {
  color: var(--text-muted);
  margin-top: 10px;
  font-size: 15px;
  max-width: 52ch;
}

@media (max-width:700px) {
  .invest-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width:480px) {
  .invest-card {
    padding: 26px 22px;
  }

  .invest-card .btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* faq */
details {
  border-top: 1px solid rgba(183, 192, 216, 0.16);
  padding: 20px 0;
}

details:last-child {
  border-bottom: 1px solid rgba(183, 192, 216, 0.16);
}

summary {
  cursor: pointer;
  font-size: 17px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: #FFFFFF;
  transition: .3s;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  color: #F7A84A;
  font-size: 15px;
  line-height: 1.9;
  margin-top: 16px;
  max-width: 70ch;
  font-weight: 500;
}

/* form */
.form-section {
  background: linear-gradient(180deg,
      #FFFDF7 0%,
      #F8F1DF 100%);
  padding: 60px;
  border-radius: 20px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, .18);
  border: 1px solid #E7D9BE;
  position: relative;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.form-copy h2 {
  color: #1A2F44;
  font-size: 40px;
  line-height: 1.2;
}

.form-copy .eyebrow {
  color: #F26A13 !important;
  font-weight: 700;
  letter-spacing: 3px;
}

.form-copy p {
  color: #000000;
  font-size: 16px;
  line-height: 1.7;
}

.form-copy ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.form-copy li {
  color: #000000;
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.form-copy li::before {
  content: "●";
  color: #F26A13;
  font-size: 13px;
  margin-top: 3px;
}

form {
  display: grid;
  gap: 14px;
}

form input,
form select {
  width: 100%;
  padding: 15px 18px;
  background: #FFFDF8;
  border: 2px solid #E3D5B8;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #1A2F44;
  transition: .3s;
}

form input::placeholder,
form select::placeholder {
  color: #8A7759;
  opacity: 1;
}

form input:focus,
form select:focus {
  outline: none;
  border-color: #F26A13;
  box-shadow: 0 0 15px rgba(242, 106, 19, .25);
}

form button {
  width: 100%;
  padding: 16px 25px;
  background: linear-gradient(135deg,
      #F26A13 0%,
      #FF8C2B 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all .35s ease;
  box-shadow:
    0 0 15px rgba(242, 106, 19, .45),
    0 0 35px rgba(242, 106, 19, .25),
    0 12px 30px rgba(0, 0, 0, .25);
  position: relative;
  overflow: hidden;
}

form button:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg,
      #FF8C2B,
      #F26A13);
  box-shadow:
    0 0 20px rgba(242, 106, 19, .8),
    0 0 45px rgba(242, 106, 19, .45),
    0 18px 40px rgba(0, 0, 0, .35);
}

form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .45),
      transparent);
  transform: skewX(-25deg);
  transition: .8s;
}

form button:hover::before {
  left: 150%;
}

.form-note {
  font-size: 12px;
  color: #7a6f57;
  margin-top: 4px;
}

.thanks {
  display: none;
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn .6s ease;
}

@media (max-width:480px) {
  .thanks {
    padding: 24px 8px;
  }

  .thanks h3 {
    font-size: 24px;
  }

  .success-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
}

.success-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #28a745, #3ddc84);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 42px;
  color: white;
  font-weight: bold;
  box-shadow: 0 12px 30px rgba(40, 167, 69, .35);
  margin-bottom: 25px;
}

.thanks h3 {
  font-size: 34px;
  color: #0A74D1;
  margin-bottom: 15px;
}

.thanks p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  max-width: 550px;
  margin: auto;
}

.thanks-info {
  margin: 35px auto;
  display: grid;
  gap: 15px;
  max-width: 450px;
}

.info-item {
  background: white;
  padding: 18px;
  border-radius: 12px;
  font-weight: 600;
  color: #1A2F44;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  border-left: 5px solid #F26A13;
  transition: .3s;
}

.thanks .btn-primary {
  margin-top: 15px;
  display: inline-block;
}

@keyframes fadeIn {

  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@media (max-width:800px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-section {
    padding: 32px 24px;
  }
}

@media (max-width:480px) {
  .form-section {
    padding: 26px 18px;
    border-radius: 16px;
  }

  .form-copy h2 {
    font-size: 26px;
  }
}

footer {
  background: #0c2a3d;
  border-top: 1px solid rgb(10, 35, 54);
  padding: 40px 0;
  margin-top: 60px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
}

.footer-row p {
  color: var(--text-muted);
  font-size: 13px;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}

@media (max-width:700px) {
  .footer-row {
    flex-wrap: wrap;
  }

  .footer-row p {
    flex-basis: 100%;
  }
}
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.whatsapp-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(37, 211, 102, .12);
  border: 1px solid rgba(37, 211, 102, .4);
  border-radius: 50px;
  color: #ffffff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: .3s;
}

.whatsapp-contact:hover {
  background: rgba(37, 211, 102, .22);
  transform: translateY(-2px);
}

.whatsapp-contact svg {
  width: 20px;
  height: 20px;
  color: #25D366;
  flex-shrink: 0;
}

.facebook-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(24, 119, 242, .12);
  border: 1px solid rgba(24, 119, 242, .4);
  border-radius: 50px;
  color: #ffffff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: .3s;
}

.facebook-contact:hover {
  background: rgba(24, 119, 242, .22);
  transform: translateY(-2px);
}

.facebook-contact svg {
  width: 20px;
  height: 20px;
  color: #1877F2;
  flex-shrink: 0;
}

.email-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(212, 55, 55, 0.12);
  border: 1px solid rgba(212, 55, 55, 0.76);
  border-radius: 50px;
  color: #ffffff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: .3s;
}

.email-contact:hover {
  background: rgba(212, 55, 55, 0.22);
  transform: translateY(-2px);
}

.email-contact svg {
  width: 20px;
  height: 20px;
  color: var(--brass, #d43737);
  flex-shrink: 0;
}

.telegram-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(41, 169, 224, .12);
  border: 1px solid rgba(41, 169, 224, .4);
  border-radius: 50px;
  color: #ffffff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: .3s;
}

.telegram-contact:hover {
  background: rgba(41, 169, 224, .22);
  transform: translateY(-2px);
}

.telegram-contact svg {
  width: 20px;
  height: 20px;
  color: #29A9E0;
  flex-shrink: 0;
}

@media (max-width:480px) {
  .whatsapp-contact,
  .facebook-contact,
  .email-contact,
  .telegram-contact {
    font-size: 13px;
    padding: 9px 16px;
  }
}

.ec-image {
  margin-top: 40px;
  background: #0D3F57;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(6px);
}

.ec-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.ec-image::before {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #F26A13;
  border-radius: 20px;
  margin: 0 auto 18px;
}

.image-title {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 16px;
}

.image-caption {
  margin-top: 18px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: #D6E8F3;
}

body::before {
  content: "";
  position: fixed;
  width: 550px;
  height: 550px;
  background: #1399f2;
  border-radius: 50%;
  filter: blur(180px);
  opacity: .10;
  top: -200px;
  left: -180px;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  width: 450px;
  height: 450px;
  background: #002944;
  border-radius: 50%;
  filter: blur(170px);
  opacity: .08;
  bottom: -180px;
  right: -150px;
  z-index: -1;
}