/* Identidad visual y componentes. Tailwind aporta utilidades de composición.
   Las reglas esenciales también funcionan antes de que termine de cargar el CDN. */
:root {
  --ink:#17211f;
  --muted:#626b68;
  --orange:#fb7b45;
  --paper:#f7f8f6;
  --line:#dfe3de;
  --radius:5px;
  color-scheme:light;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:var(--paper);
  font-synthesis:none
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:100px
}

body {
  margin:0;
  font-size:16px;
  line-height:1.6
}

h1,h2,h3,p {
  margin:0
}

a {
  color:inherit;
  text-decoration:none
}

button,input,select,textarea {
  font:inherit
}

button,a,input,select,textarea {
  -webkit-tap-highlight-color:transparent
}

button {
  cursor:pointer
}

img {
  display:block;
  max-width:100%;
  object-fit:cover
}

button {
  border:0
}

a,button {
  touch-action:manipulation
}

button:disabled {
  cursor:default
}

svg {
  flex-shrink:0
}

[hidden] {
  display:none!important
}

:focus-visible {
  outline:3px solid #2563eb;
  outline-offset:5px
}

::selection {
  background:var(--orange);
  color:var(--ink)
}

.icon {
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.65;
  stroke-linecap:round;
  stroke-linejoin:round
}

.icon-library {
  position:absolute;
  width:0;
  height:0;
  overflow:hidden
}

.shell {
  width:min(1240px,calc(100% - 96px));
  margin-inline:auto
}

.flex {
  display:flex
}

.grid {
  display:grid
}

.items-center {
  align-items:center
}

.justify-between {
  justify-content:space-between
}

.skip-link {
  position:fixed;
  top:12px;
  left:12px;
  z-index:100;
  background:white;
  padding:12px;
  transform:translateY(-150%)
}

.skip-link:focus {
  transform:none
}

.site-header {
  position:sticky;
  top:0;
  z-index:30;
  background:#f7f8f6f5;
  border-bottom:1px solid var(--line)
}

.header-inner {
  height:90px;
  gap:24px
}

.brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:31px;
  font-weight:750;
  letter-spacing:-1.6px;
  line-height:1
}

.brand .brand-icon {
  width:31px;
  height:33px;
  stroke-width:1.9
}

.brand-next {
  font-weight:400
}

.brand-dot {
  color:#cc4f1d
}

.desktop-nav {
  gap:30px;
  font-size:14px;
  font-weight:600
}

.desktop-nav a {
  padding-block:12px;
  transition:color .2s
}

.desktop-nav a:hover {
  color:#b44217
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  min-height:54px;
  padding:14px 22px;
  background:var(--orange);
  color:#17211f;
  font-size:14px;
  font-weight:700;
  border:1px solid transparent;
  border-radius:var(--radius);
  line-height:1.4;
  transition:background .2s,transform .2s
}

.button:hover {
  background:#ff956b;
  transform:translateY(-2px)
}

.button-small {
  min-height:44px;
  padding:10px 17px;
  gap:16px
}

.button .icon {
  width:20px;
  height:20px
}

.menu-toggle {
  display:none;
  width:44px;
  height:44px;
  background:transparent;
  position:relative
}

.menu-toggle span {
  position:absolute;
  width:23px;
  height:2px;
  background:var(--ink);
  left:11px;
  top:16px;
  transition:transform .2s
}

.menu-toggle span+span {
  top:25px
}

.menu-toggle[aria-expanded=true] span {
  transform:translateY(4.5px) rotate(45deg)
}

.menu-toggle[aria-expanded=true] span+span {
  transform:translateY(-4.5px) rotate(-45deg)
}

.mobile-nav {
  padding-block:6px 20px
}

.mobile-nav a {
  display:block;
  padding:12px 0;
  border-top:1px solid var(--line)
}

.hero {
  position:relative;
  isolation:isolate;
  background:#17211f;
  color:white;
  min-height:680px;
  overflow:hidden
}

.hero-image,.hero-shade {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:-2
}

.hero-image {
  object-position:center 58%
}

.hero-shade {
  z-index:-1;
  background:linear-gradient(90deg,rgba(13,23,20,.9) 0%,rgba(13,23,20,.77) 35%,rgba(13,23,20,.16) 78%),linear-gradient(0deg,rgba(13,23,20,.65),transparent 40%)
}

.hero-content {
  padding-top:70px;
  padding-bottom:105px
}

.eyebrow {
  font-size:12px;
  letter-spacing:1.8px;
  font-weight:700;
  line-height:1.6;
  margin-bottom:22px
}

.hero-eyebrow {
  display:flex;
  align-items:center;
  gap:12px;
  color:#f0f0e9
}

.accent-line {
  width:26px;
  height:2px;
  background:var(--orange)
}

h1 {
  font-size:clamp(48px,5.2vw,76px);
  line-height:1.06;
  letter-spacing:-3px;
  font-weight:650;
  max-width:750px
}

h1>span {
  color:var(--orange)
}

.hero-description {
  margin:25px 0 28px;
  color:#e0e4df;
  max-width:510px;
  font-size:16px;
  line-height:1.8
}

.hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px
}

.button-outline {
  background:#17211f35;
  border-color:#b0b7b1;
  color:white
}

.button-outline:hover {
  background:#ffffff18
}

.hero-assurance {
  font-size:12px;
  color:#d6ddd6;
  margin-top:25px;
  gap:9px
}

.hero-assurance .icon {
  width:17px;
  height:17px
}

.hero-caption {
  position:absolute;
  bottom:100px;
  right:48px;
  font-size:11px;
  font-weight:600;
  letter-spacing:1.8px;
  line-height:2.2
}

.caption-line {
  display:block;
  width:38px;
  border-top:2px solid var(--orange);
  margin-bottom:12px
}

.caption-secondary {
  color:#d1d7cf
}

.hero-scroll {
  position:absolute;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  font-size:10px;
  letter-spacing:1.7px;
  display:flex;
  gap:20px;
  align-items:center;
  white-space:nowrap;
  color:#e5e8e2
}

.hero-scroll span {
  font-size:20px
}

.credentials {
  background:#eaece7;
  border-bottom:1px solid var(--line)
}

.credentials-grid {
  grid-template-columns:1fr 1fr 1fr;
  padding-block:28px
}

.credentials-grid>div {
  display:flex;
  align-items:center;
  gap:22px;
  padding-inline:28px;
  border-left:1px solid #cfd5ce
}

.credentials-grid>div:first-child {
  padding-left:0;
  border:0
}

.credentials-grid>div:last-child {
  padding-right:0
}

.credentials strong {
  font-size:44px;
  letter-spacing:-2px;
  line-height:1
}

.credentials strong span {
  color:#b7461c
}

.credentials p {
  font-size:14px;
  font-weight:700;
  line-height:1.7
}

.credentials p span {
  font-size:12px;
  font-weight:400;
  color:#57615a
}

.credentials .icon {
  width:32px;
  height:32px;
  stroke-width:1.4
}

.section {
  padding-block:90px
}

.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  margin-bottom:38px
}

.section .eyebrow {
  color:#646d65;
  margin-bottom:16px
}

h2 {
  font-size:clamp(32px,3.3vw,45px);
  line-height:1.14;
  font-weight:600;
  letter-spacing:-1.6px
}

.muted-heading {
  color:#7c857b
}

.section-intro {
  max-width:340px;
  color:var(--muted);
  font-size:14px;
  line-height:1.85;
  padding-bottom:3px
}

.service-grid {
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px
}

.service-card {
  border:1px solid var(--line);
  background:white;
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .25s,box-shadow .25s;
  display:flex;
  flex-direction:column
}

.service-card:hover,.service-card:focus-within {
  transform:translateY(-5px);
  box-shadow:0 16px 35px #17211f0d
}

.service-photo {
  position:relative;
  height:230px;
  overflow:hidden;
  background:#38433e
}

.service-photo img {
  width:100%;
  height:100%;
  transition:transform .6s
}

.service-card:hover .service-photo img {
  transform:scale(1.035)
}

.photo-tag {
  position:absolute;
  left:18px;
  bottom:17px;
  background:#f7f8f6ed;
  color:#253029;
  padding:6px 10px;
  font-size:10px;
  font-weight:700;
  letter-spacing:1.1px;
  border-radius:2px
}

.card-content {
  padding:26px;
  position:relative;
  display:flex;
  flex-direction:column;
  flex:1
}

.card-content h3 {
  font-size:23px;
  line-height:1.2;
  letter-spacing:-.6px;
  margin-bottom:14px
}

.card-content p {
  font-size:14px;
  color:var(--muted);
  line-height:1.8;
  margin-bottom:20px
}

.tags {
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  padding:0;
  margin:0 0 26px;
  list-style:none
}

.tags li {
  font-size:10px;
  border:1px solid #dfe3de;
  padding:4px 8px;
  border-radius:3px;
  color:#535e56
}

.text-link {
  display:inline-flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  font-size:13px;
  font-weight:700;
  line-height:1.5
}

.text-link:hover {
  text-decoration:underline;
  text-underline-offset:5px
}

.text-link .icon {
  width:20px;
  height:20px
}

.card-content .text-link {
  border-top:1px solid var(--line);
  padding-top:20px;
  margin-top:auto
}

.automation-visual {
  height:230px;
  padding:25px;
  background:#24342d;
  color:#f1f4e9;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:space-between
}

.automation-label {
  font-size:10px;
  letter-spacing:1px;
  display:flex;
  align-items:center;
  gap:7px;
  color:#c0cbb7
}

.automation-label .icon {
  width:17px;
  height:17px;
  color:var(--orange)
}

.automation-visual strong {
  font-size:34px;
  line-height:1.14;
  font-weight:500;
  letter-spacing:-1.5px
}

.automation-word {
  font-size:10px;
  letter-spacing:2px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  color:#ff956b
}

.image-note {
  font-size:11px;
  color:#6b746c;
  margin-top:14px
}

.security-section {
  background:var(--ink);
  color:#f4f5ee;
  padding-block:75px
}

.security-grid {
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center
}

.security-image-wrap {
  height:530px;
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  background:#43504d
}

.security-image-wrap>img {
  width:100%;
  height:100%;
  filter:brightness(.8);
  object-position:45% center
}

.security-image-label {
  position:absolute;
  left:25px;
  bottom:25px;
  background:#f7f8f6;
  color:var(--ink);
  padding:17px 25px;
  display:flex;
  align-items:center;
  gap:17px;
  border-radius:var(--radius);
  line-height:1.5;
  font-size:14px
}

.security-image-label .icon {
  width:34px;
  height:34px
}

.security-content .eyebrow {
  color:#fc9a70
}

.security-content h2 {
  font-size:clamp(32px,3.2vw,44px)
}

.security-intro {
  font-size:15px;
  color:#bac4bc;
  margin-top:20px;
  max-width:410px
}

.security-feature {
  display:flex;
  gap:18px;
  margin-top:27px
}

.security-feature>.icon {
  color:#ff9667;
  width:23px;
  height:23px;
  margin-top:3px
}

.security-feature h3 {
  font-size:18px;
  font-weight:500;
  margin-bottom:6px
}

.security-feature p {
  font-size:14px;
  line-height:1.8;
  color:#bac4bc;
  max-width:380px
}

.security-content .button {
  margin-top:32px
}

.trust-section .section-heading {
  display:block
}

.trust-grid {
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:40px
}

.trust-grid article {
  border-top:1px solid #cdd3ca;
  padding-top:28px
}

.trust-grid .icon {
  width:32px;
  height:32px;
  margin-bottom:21px;
  color:#697762
}

.trust-grid h3 {
  font-size:18px;
  margin-bottom:12px;
  letter-spacing:-.3px;
  font-weight:600
}

.trust-grid p {
  font-size:14px;
  color:var(--muted);
  line-height:1.8;
  max-width:330px
}

.contact-section {
  padding-block:80px;
  background:#e9ede5
}

.contact-grid {
  grid-template-columns:1fr 1.1fr;
  gap:90px;
  align-items:center
}

.contact-copy h2 {
  font-size:clamp(36px,3.7vw,52px);
  line-height:1.12
}

.contact-copy h2>span {
  color:#c34a1c
}

.contact-copy>p:not(.eyebrow) {
  font-size:15px;
  color:#5d685e;
  margin-top:24px;
  max-width:350px
}

.contact-location {
  display:flex;
  gap:15px;
  align-items:center;
  margin:33px 0
}

.contact-location strong {
  display:block;
  font-size:15px
}

.contact-location span {
  display:block;
  font-size:13px;
  color:#5d685e;
  margin-top:3px
}

.contact-copy>.text-link {
  max-width:355px
}

.contact-form {
  padding:34px;
  background:#fff;
  border:1px solid #dae0d5;
  border-radius:7px;
  box-shadow:0 8px 30px #17211f04
}

.contact-form h3 {
  font-size:25px;
  letter-spacing:-.8px;
  line-height:1.3
}

.form-subtitle {
  font-size:13px;
  color:var(--muted);
  margin-top:5px;
  margin-bottom:25px
}

.form-row {
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-bottom:17px
}

.contact-form label {
  display:block;
  font-size:12px;
  font-weight:600;
  margin-bottom:7px
}

.contact-form label>span:not(.optional) {
  color:#b7461c
}

.optional {
  font-weight:400;
  color:var(--muted)
}

input,select,textarea {
  display:block;
  width:100%;
  border:1px solid #d9dfd5;
  border-radius:4px;
  background:#fafbf8;
  color:var(--ink);
  padding:12px;
  font-size:14px;
  line-height:1.5;
  transition:border-color .2s
}

input,select {
  min-height:46px
}

textarea {
  resize:vertical;
  min-height:100px
}

input::placeholder,textarea::placeholder {
  color:#758071;
  opacity:1
}

.field-help {
  display:block;
  font-size:11px;
  color:var(--muted);
  margin-top:4px
}

input:focus,select:focus,textarea:focus {
  outline:2px solid #7b8e72;
  outline-offset:2px;
  border-color:#7b8e72
}

.form-note {
  font-size:11px;
  line-height:1.7;
  color:#687260;
  margin:17px 0
}

.form-submit {
  width:100%;
  justify-content:space-between
}

.form-status {
  font-size:13px;
  color:var(--ink);
  background:#f1f4ee;
  border-left:3px solid #7c8b71;
  padding:12px;
  margin-top:14px
}

.form-status[data-state=error] {
  border-color:#b7461c;
  background:#fff2ec
}

.site-footer {
  background:var(--ink);
  color:#f4f5ee;
  padding-block:48px 22px
}

.footer-top {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:30px;
  padding-bottom:35px
}

.footer-top .brand {
  font-size:28px
}

.footer-top p {
  font-size:12px;
  color:#b3beb4;
  margin-top:14px
}

.footer-area {
  display:flex;
  gap:9px;
  align-items:center;
  font-size:12px;
  margin-top:7px;
  color:#cbd3ca
}

.footer-area .icon {
  width:17px;
  height:17px
}

.social-links {
  display:flex;
  gap:10px
}

.social-links a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border:1px solid #53604f;
  border-radius:50%;
  transition:background .2s
}

.social-links a:hover {
  background:#35442f
}

.social-links .icon {
  width:19px;
  height:19px
}

.footer-bottom {
  display:flex;
  justify-content:space-between;
  gap:16px;
  border-top:1px solid #43503e;
  padding-top:22px;
  color:#b9c3b7;
  font-size:11px
}

.whatsapp-float {
  position:fixed;
  z-index:25;
  right:24px;
  bottom:24px;
  bottom:max(24px,env(safe-area-inset-bottom));
  display:flex;
  align-items:center;
  gap:9px;
  color:white;
  background:#17683d;
  border:1px solid #ffffff40;
  box-shadow:0 4px 18px #0003;
  padding:14px 19px;
  border-radius:40px;
  font-size:13px;
  font-weight:600;
  transition:transform .2s,opacity .2s
}

.whatsapp-float:hover {
  background:#115632;
  transform:translateY(-3px)
}

.whatsapp-float .icon {
  width:24px;
  height:24px
}

@media(min-width:1600px) {
  .hero-caption {
    right:calc((100vw - 1240px)/2)
  }
  .hero {
    min-height:750px
  }
  .hero-content {
    padding-top:95px
  }
}

@media(max-width:1100px) {
  .shell {
    width:calc(100% - 64px)
  }
  .desktop-nav {
    gap:20px
  }
  .hero-caption {
    right:32px;
    font-size:10px
  }
  .credentials-grid>div {
    gap:14px;
    padding-inline:20px
  }
  .credentials p span {
    font-size:11px
  }
  .security-grid {
    gap:42px
  }
  .contact-grid {
    gap:40px
  }
  .card-content {
    padding:22px
  }
  .card-content h3 {
    font-size:21px
  }
  .automation-visual strong {
    font-size:30px
  }
  .section-intro {
    max-width:290px
  }
}

@media(max-width:800px) {
  .shell {
    width:calc(100% - 40px)
  }
  .header-inner {
    height:74px;
    gap:14px
  }
  .brand {
    font-size:28px
  }
  .desktop-nav {
    display:none
  }
  .menu-toggle {
    display:block
  }
  .header-cta {
    margin-left:auto;
    font-size:12px;
    padding-inline:12px;
    gap:10px
  }
  .hero {
    min-height:630px
  }
  .hero-content {
    padding-top:65px;
    padding-bottom:100px
  }
  h1 {
    font-size:62px
  }
  .hero-caption {
    display:none
  }
  .hero-shade {
    background:linear-gradient(90deg,#0d1714e8,#0d171475),linear-gradient(0deg,#0d17147a,transparent)
  }
  .credentials-grid {
    padding-block:24px
  }
  .credentials-grid>div {
    padding-inline:13px;
    gap:10px
  }
  .credentials strong {
    font-size:36px
  }
  .credentials .icon {
    width:25px;
    height:25px
  }
  .credentials p {
    font-size:12px
  }
  .credentials p span {
    display:none
  }
  .section {
    padding-block:65px
  }
  .section-heading {
    gap:25px;
    align-items:flex-start;
    flex-direction:column
  }
  .section-intro {
    max-width:500px
  }
  .service-grid {
    grid-template-columns:1fr;
    gap:22px
  }
  .service-card {
    display:grid;
    grid-template-columns:42% 58%
  }
  .service-photo,.automation-visual {
    height:100%;
    min-height:270px
  }
  .card-content {
    padding:25px
  }
  .card-content h3 {
    font-size:24px
  }
  .security-section {
    padding-block:60px
  }
  .security-grid {
    gap:34px;
    grid-template-columns:1fr
  }
  .security-image-wrap {
    height:340px
  }
  .security-image-wrap>img {
    object-position:center 40%
  }
  .security-content {
    max-width:600px
  }
  .security-content h2 {
    font-size:39px
  }
  .security-intro,.security-feature p {
    max-width:540px
  }
  .trust-grid {
    gap:24px
  }
  .trust-grid h3 {
    font-size:17px
  }
  .contact-grid {
    grid-template-columns:1fr;
    gap:35px
  }
  .contact-copy h2 br:last-of-type {
    display:none
  }
  .contact-copy>p:not(.eyebrow) {
    max-width:450px
  }
  .contact-section {
    padding-block:60px
  }
  .contact-form {
    max-width:650px
  }
  .footer-area {
    display:none
  }
}

@media(max-width:520px) {
  html {
    scroll-padding-top:90px
  }
  .header-cta {
    min-height:40px;
    padding:8px 11px;
    font-size:11px
  }
  .header-cta .icon {
    display:none
  }
  .brand {
    font-size:26px;
    gap:7px
  }
  .brand .brand-icon {
    width:25px;
    height:27px
  }
  .hero {
    min-height:650px
  }
  .hero-image {
    object-position:65% center
  }
  .hero-content {
    padding-top:58px
  }
  h1 {
    font-size:clamp(43px,11.8vw,60px);
    letter-spacing:-2px;
    line-height:1.09
  }
  .eyebrow {
    font-size:10px;
    letter-spacing:1.35px
  }
  .hero-eyebrow {
    gap:8px
  }
  .accent-line {
    width:18px
  }
  .hero-description {
    font-size:15px;
    max-width:340px;
    margin-block:25px
  }
  .desktop-break {
    display:none
  }
  .hero-actions {
    gap:10px
  }
  .hero-actions .button {
    font-size:12px;
    padding:13px 14px;
    gap:9px;
    min-height:50px
  }
  .hero-assurance {
    font-size:11px;
    gap:6px;
    align-items:flex-start
  }
  .hero-scroll {
    font-size:9px
  }
  .credentials-grid {
    grid-template-columns:1fr;
    padding-block:8px
  }
  .credentials-grid>div {
    padding:15px 0;
    border-left:0;
    border-top:1px solid #cfd5ce;
    gap:20px
  }
  .credentials-grid>div:first-child {
    padding-block:16px
  }
  .credentials-grid>div>strong,.credentials-grid>div>.icon {
    width:56px;
    text-align:center;
    flex-shrink:0
  }
  .credentials-grid>div>.icon {
    height:25px
  }
  .credentials p {
    font-size:13px
  }
  .credentials p span {
    display:inline;
    font-size:11px
  }
  .section {
    padding-block:55px
  }
  h2 {
    font-size:33px;
    letter-spacing:-1.3px
  }
  .section-heading {
    gap:20px;
    margin-bottom:28px
  }
  .service-card {
    display:flex
  }
  .service-photo,.automation-visual {
    height:225px;
    min-height:225px
  }
  .automation-visual {
    padding:26px
  }
  .automation-visual strong {
    font-size:36px
  }
  .card-content {
    padding:25px
  }
  .tags li {
    font-size:11px
  }
  .security-image-wrap {
    height:310px
  }
  .security-grid {
    gap:35px
  }
  .security-content h2 {
    font-size:35px
  }
  .security-image-label {
    left:18px;
    bottom:18px;
    padding:13px 18px
  }
  .security-content .button {
    font-size:12px;
    gap:14px
  }
  .trust-grid {
    grid-template-columns:1fr;
    gap:25px
  }
  .trust-grid article {
    padding-top:24px
  }
  .trust-grid .icon {
    margin-bottom:15px
  }
  .trust-grid h3 {
    font-size:19px
  }
  .trust-grid p {
    max-width:none
  }
  .contact-copy h2 {
    font-size:39px
  }
  .contact-copy>.text-link {
    font-size:12px
  }
  .contact-form {
    padding:23px 20px
  }
  .contact-form h3 {
    font-size:24px
  }
  .form-row {
    grid-template-columns:1fr;
    gap:17px
  }
  .contact-form label {
    font-size:13px
  }
  input,select,textarea {
    font-size:16px
  }
  .form-note {
    font-size:12px
  }
  .footer-top {
    gap:20px;
    flex-wrap:wrap
  }
  .footer-top p {
    max-width:190px
  }
  .footer-bottom {
    flex-direction:column;
    padding-right:55px;
    font-size:11px
  }
  .site-footer {
    padding-bottom:35px
  }
  .whatsapp-float {
    width:52px;
    height:52px;
    padding:0;
    justify-content:center;
    right:16px;
    bottom:max(16px,env(safe-area-inset-bottom))
  }
  .whatsapp-float span {
    display:none
  }
  .whatsapp-float.is-obscured {
    opacity:0;
    visibility:hidden;
    pointer-events:none
  }
  .form-submit {
    font-size:13px
  }
}

/* El contenido permanece visible sin JavaScript y con movimiento reducido. */
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  *,*::before,*::after {
    transition:none!important;
    animation:none!important
  }
  .service-card:hover,.service-card:focus-within,.button:hover,.whatsapp-float:hover {
    transform:none
  }
  .service-card:hover .service-photo img {
    transform:none
  }
}
