/* =========================
   EN MANADA | BASE GLOBAL
   ========================= */

:root{
  --color-bg:#ffffff;
  --color-text:#111111;
  --color-muted:#666666;
  --color-accent:#ff934d;
  --color-accent-soft:#ffd1b1;
  --color-border:rgba(0,0,0,.10);

  --container:1180px;
  --radius:18px;
  --shadow:0 14px 40px rgba(0,0,0,.08);

  --font-main:system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:var(--font-main);
  background:var(--color-bg);
  color:var(--color-text);
  line-height:1.5;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color:inherit;
}

/* =========================
   LAYOUT
   ========================= */

.container{
  width:min(100% - 32px, var(--container));
  margin-inline:auto;
}

/* =========================
   HEADER
   ========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--color-border);
}

.site-header__inner{
  min-height:76px;
  display:flex;
  align-items:center;
  gap:20px;
}

.site-logo{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  flex:0 0 auto;
}

.site-logo img{
  width:150px;
  height:auto;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:18px;
  margin-left:auto;
}

.site-nav a{
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  color:var(--color-text);
}

.site-nav a:hover{
  color:var(--color-accent);
}

.site-whatsapp{
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  background:#25D366;
  color:#111;
  padding:10px 14px;
  border-radius:999px;
  box-shadow:0 8px 20px rgba(37,211,102,.24);
}

/* =========================
   PLACEHOLDER
   ========================= */

.page-placeholder{
  min-height:70vh;
  display:flex;
  align-items:center;
  text-align:center;
  padding:72px 0;
}

.page-placeholder h1{
  font-size:clamp(42px,7vw,86px);
  line-height:.95;
  letter-spacing:-2px;
}

.page-placeholder p{
  margin-top:14px;
  color:var(--color-muted);
  font-size:clamp(18px,2vw,24px);
}

/* =========================
   FOOTER
   ========================= */

.site-footer{
  border-top:1px solid var(--color-border);
  padding:24px 0;
  color:var(--color-muted);
}

.site-footer__inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  font-size:14px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media(max-width:780px){
  .site-header__inner{
    flex-wrap:wrap;
    padding:12px 0;
  }

  .site-logo img{
    width:132px;
  }

  .site-nav{
    order:3;
    width:100%;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin-left:0;
  }

  .site-whatsapp{
    margin-left:auto;
  }
}

/* =========================
   HOME HERO
   ========================= */

.home-hero{
  min-height:calc(100vh - 76px);
  display:flex;
  align-items:center;
  padding:64px 0;
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(255,147,77,.20), transparent 60%),
    linear-gradient(180deg,#fff 0%,#fff7f1 100%);
}

.home-hero__inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}

.home-hero__eyebrow{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,147,77,.14);
  color:#c85d18;
  font-weight:900;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:18px;
}

.home-hero h1{
  font-size:clamp(36px,5vw,68px);
  line-height:1;
  letter-spacing:-2px;
  margin:0;
  max-width:850px;
}

.home-hero__lead{
  margin-top:22px;
  max-width:680px;
  color:var(--color-muted);
  font-size:clamp(17px,1.8vw,22px);
  line-height:1.5;
}

.home-hero__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 18px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
  font-size:15px;
  border:1px solid transparent;
}

.btn-primary{
  background:linear-gradient(90deg,var(--color-accent),var(--color-accent-soft));
  color:#111;
}

.btn-secondary{
  background:#fff;
  color:#111;
  border-color:var(--color-border);
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}

.home-hero__media{
  display:flex;
  justify-content:center;
}

.home-hero__image-frame{
  width:min(100%,520px);
  border-radius:32px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
  border:1px solid var(--color-border);
}

.home-hero__image-frame img{
  width:100%;
  height:auto;
}

/* Responsive Hero */
@media(max-width:900px){
  .home-hero{
    min-height:auto;
    padding:48px 0 56px;
  }

  .home-hero__inner{
    grid-template-columns:1fr;
    gap:30px;
  }

  .home-hero h1{
    letter-spacing:-2px;
  }

  .home-hero__media{
    justify-content:flex-start;
  }
}

@media(max-width:520px){
  .home-hero__actions .btn{
    width:100%;
  }
}

/* =========================
   HOME SERVICES
   ========================= */

.home-services{
  padding:72px 0;
  background:#ffffff;
}

.section-head{
  max-width:760px;
  margin-bottom:34px;
}

.section-eyebrow{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,147,77,.14);
  color:#c85d18;
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:12px;
}

.section-head h2{
  font-size:clamp(30px,4vw,52px);
  line-height:1;
  letter-spacing:-1.5px;
  margin-bottom:12px;
}

.section-head p{
  color:var(--color-muted);
  font-size:clamp(16px,1.6vw,19px);
  line-height:1.55;
}

.services-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:18px;
}

.service-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:22px;
  min-height:280px;
  padding:24px;
  border:1px solid var(--color-border);
  border-radius:var(--radius);
  background:#ffffff;
  box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.service-card--featured{
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(255,147,77,.18), transparent 60%),
    #fff8f3;
  border-color:rgba(255,147,77,.30);
}

.service-card__icon{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:rgba(255,147,77,.14);
  font-size:24px;
}

.service-card__content h3{
  font-size:22px;
  line-height:1.15;
  letter-spacing:-.4px;
  margin-bottom:10px;
}

.service-card__content p{
  color:var(--color-muted);
  font-size:15.5px;
  line-height:1.55;
}

.service-card__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:flex-start;
  min-height:44px;
  padding:10px 14px;
  border-radius:12px;
  text-decoration:none;
  background:#111;
  color:#fff;
  font-weight:800;
  font-size:14px;
}

.service-card__link:hover{
  background:var(--color-accent);
  color:#111;
}

/* Responsive */
@media(max-width:980px){
  .services-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    min-height:auto;
  }
}

@media(max-width:520px){
  .home-services{
    padding:56px 0;
  }

  .service-card{
    padding:20px;
  }

  .service-card__link{
    width:100%;
  }
}

/* =========================
   HOME PROCESS
   ========================= */

.home-process{
  padding:72px 0;
  background:
    linear-gradient(180deg,#ffffff 0%,#fff8f3 100%);
}

.home-process__inner{
  display:flex;
  flex-direction:column;
  gap:36px;
}

.section-head--center{
  max-width:820px;
  margin:0 auto;
  text-align:center;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.process-card{
  position:relative;
  min-height:270px;
  padding:24px;
  border-radius:var(--radius);
  border:1px solid rgba(0,0,0,.08);
  background:#ffffff;
  box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.process-card__number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:50%;
  background:rgba(255,147,77,.16);
  color:#c85d18;
  font-weight:900;
  font-size:13px;
  margin-bottom:22px;
}

.process-card h3{
  font-size:20px;
  line-height:1.15;
  letter-spacing:-.4px;
  margin-bottom:10px;
}

.process-card p{
  color:var(--color-muted);
  font-size:15px;
  line-height:1.55;
}

/* Responsive */
@media(max-width:1080px){
  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:620px){
  .home-process{
    padding:56px 0;
  }

  .process-grid{
    grid-template-columns:1fr;
  }

  .process-card{
    min-height:auto;
  }
}

/* =========================
   HOME DESTINATIONS
   ========================= */

.home-destinations{
  padding:72px 0;
  background:#ffffff;
}

.routes-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:36px;
}

.route-card{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  padding:20px 22px;
  border-radius:18px;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 24px rgba(0,0,0,.04);
  font-weight:800;
  font-size:17px;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

.route-card:hover{
  transform:translateY(-2px);
  border-color:rgba(255,147,77,.34);
  box-shadow:0 18px 34px rgba(0,0,0,.08);
}

/* Badges AR / BR - reemplazan banderas unicode */
.route-card__country{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:24px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.04em;
  flex:0 0 auto;
}

.route-card__country--ar{
  background:#dff3ff;
  color:#0878b8;
  border:1px solid rgba(8,120,184,.18);
}

.route-card__country--br{
  background:#e8f8dc;
  color:#268a1f;
  border:1px solid rgba(38,138,31,.18);
}

.route-card__city{
  color:#111;
}

.route-card__arrow{
  color:var(--color-accent);
  font-size:18px;
}

.destinations-cta{
  margin-top:34px;
  padding:26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  border-radius:var(--radius);
  background:
    radial-gradient(600px 260px at 10% 0%, rgba(255,147,77,.18), transparent 60%),
    #fff8f3;
  border:1px solid rgba(255,147,77,.24);
}

.destinations-cta p{
  font-size:20px;
  font-weight:900;
  letter-spacing:-.4px;
}

/* Responsive */
@media(max-width:820px){
  .routes-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:620px){
  .home-destinations{
    padding:56px 0;
  }

  .route-card{
    font-size:16px;
    padding:18px;
  }

  .destinations-cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .destinations-cta .btn{
    width:100%;
  }
}
/* =========================
   HOME FINAL CTA
   ========================= */

.home-final-cta{
  padding:72px 0 84px;
  background:
    linear-gradient(180deg,#ffffff 0%,#fff8f3 100%);
}

.final-cta-card{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  align-items:center;
  gap:28px;

  padding:36px;

  border-radius:28px;

  background:
    radial-gradient(700px 320px at 10% 0%, rgba(255,147,77,.22), transparent 60%),
    #ffffff;

  border:1px solid rgba(255,147,77,.26);

  box-shadow:0 18px 46px rgba(0,0,0,.08);
}

.final-cta-content h2{
  font-size:clamp(30px,4vw,52px);
  line-height:1;
  letter-spacing:-1.5px;
  margin-bottom:14px;
}

.final-cta-content p{
  color:var(--color-muted);
  font-size:clamp(16px,1.6vw,19px);
  line-height:1.55;
  max-width:720px;
}

.final-cta-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:stretch;
}

.final-cta-actions .btn{
  width:100%;
}

/* Responsive */
@media(max-width:820px){
  .final-cta-card{
    grid-template-columns:1fr;
    padding:28px;
  }
}

@media(max-width:520px){
  .home-final-cta{
    padding:56px 0 64px;
  }

  .final-cta-card{
    padding:22px;
    border-radius:22px;
  }
}
/* =========================
   CONTACT PAGE
   ========================= */

.contact-hero{
  padding:72px 0 32px;
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(255,147,77,.16), transparent 60%),
    linear-gradient(180deg,#fff 0%,#fff8f3 100%);
}

.contact-hero__content{
  max-width:760px;
}

.contact-hero h1{
  font-size:clamp(42px,6vw,74px);
  line-height:.95;
  letter-spacing:-2px;
}

.contact-hero__lead{
  margin-top:18px;
  color:var(--color-muted);
  font-size:clamp(18px,2vw,22px);
  line-height:1.55;
}

/* =========================
   CONTACT LAYOUT
   ========================= */

.contact-section{
  padding:32px 0 84px;
  background:#fff;
}

.contact-layout{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:start;
}

/* =========================
   FORM CARD
   ========================= */

.contact-form-card{
  padding:30px;
  border-radius:28px;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  box-shadow:0 18px 46px rgba(0,0,0,.06);
}

.contact-form-card h2{
  font-size:32px;
  line-height:1;
  letter-spacing:-1px;
  margin-bottom:28px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.form-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-field label{
  font-size:14px;
  font-weight:800;
}

.form-field input,
.form-field select,
.form-field textarea{
  width:100%;

  border:none;
  outline:none;

  padding:14px 16px;

  border-radius:16px;

  background:#f6f6f6;

  font-size:15px;
  font-family:inherit;

  color:#111;

  border:1px solid transparent;

  transition:
    border-color .18s ease,
    background .18s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  border-color:rgba(255,147,77,.5);
  background:#fff;
}

.form-field textarea{
  resize:vertical;
  min-height:140px;
}

/* =========================
   CONTACT INFO
   ========================= */

.contact-info-card{
  display:flex;
  flex-direction:column;
  gap:22px;

  padding:30px;

  border-radius:28px;

  background:
    radial-gradient(600px 260px at 10% 0%, rgba(255,147,77,.18), transparent 60%),
    #fff8f3;

  border:1px solid rgba(255,147,77,.22);
}

.contact-info-block h3{
  font-size:28px;
  line-height:1;
  letter-spacing:-1px;
  margin-bottom:14px;
}

.contact-info-block p{
  color:var(--color-muted);
  line-height:1.6;
}

.contact-info-divider{
  width:100%;
  height:1px;
  background:rgba(0,0,0,.08);
}

.contact-info-list{
  display:flex;
  flex-direction:column;
  gap:12px;

  list-style:none;
}

.contact-info-list li{
  position:relative;
  padding-left:18px;
  color:#111;
  font-weight:700;
}

.contact-info-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;

  width:7px;
  height:7px;

  border-radius:50%;

  background:var(--color-accent);
}

/* =========================
   RESPONSIVE
   ========================= */

@media(max-width:980px){

  .contact-layout{
    grid-template-columns:1fr;
  }
}

@media(max-width:620px){

  .contact-hero{
    padding:54px 0 24px;
  }

  .contact-section{
    padding:24px 0 64px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .contact-form-card,
  .contact-info-card{
    padding:22px;
    border-radius:22px;
  }
}
/* =========================
   FORM ALERTS
   ========================= */

.form-alert{
  margin-top:24px;
  padding:16px 18px;
  border-radius:16px;
  font-weight:800;
  font-size:15px;
  line-height:1.4;
  border:1px solid transparent;
}

.form-alert--success{
  background:#ecfdf3;
  color:#0f7a43;
  border-color:#b7ebcd;
}

.form-alert--error{
  background:#fff1f1;
  color:#b42318;
  border-color:#f7c7c7;
}
/* =========================
   DEPARTURES PAGE
   ========================= */

.departures-hero{
  padding:72px 0 36px;
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(255,147,77,.16), transparent 60%),
    linear-gradient(180deg,#fff 0%,#fff8f3 100%);
}

.departures-hero__content{
  max-width:820px;
}

.departures-hero h1{
  font-size:clamp(42px,6vw,76px);
  line-height:.95;
  letter-spacing:-2px;
  margin-bottom:18px;
}

.departures-hero p{
  color:var(--color-muted);
  font-size:clamp(18px,2vw,22px);
  line-height:1.55;
}

.departures-section{
  padding:42px 0 84px;
  background:#fff;
}

.departures-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.departure-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;

  min-height:280px;
  padding:24px;

  border-radius:var(--radius);
  border:1px solid var(--color-border);

  background:#ffffff;
  box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.departure-card--featured{
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(255,147,77,.18), transparent 60%),
    #fff8f3;
  border-color:rgba(255,147,77,.30);
}

.departure-card__date{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:flex-start;

  padding:8px 12px;
  border-radius:999px;

  background:rgba(255,147,77,.14);
  color:#c85d18;

  font-size:13px;
  font-weight:900;
}

.departure-card h2{
  font-size:24px;
  line-height:1.1;
  letter-spacing:-.6px;
}

.departure-card p{
  color:var(--color-muted);
  font-size:15.5px;
  line-height:1.55;
}

.departures-cta{
  margin-top:36px;
  padding:30px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;

  border-radius:28px;

  background:
    radial-gradient(700px 320px at 10% 0%, rgba(255,147,77,.22), transparent 60%),
    #ffffff;

  border:1px solid rgba(255,147,77,.26);
  box-shadow:0 18px 46px rgba(0,0,0,.08);
}

.departures-cta h2{
  font-size:clamp(28px,3.4vw,44px);
  line-height:1;
  letter-spacing:-1px;
  margin-bottom:10px;
}

.departures-cta p{
  color:var(--color-muted);
  line-height:1.55;
}

@media(max-width:980px){
  .departures-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .departures-hero{
    padding:54px 0 28px;
  }

  .departures-section{
    padding:32px 0 64px;
  }

  .departures-grid{
    grid-template-columns:1fr;
  }

  .departure-card{
    min-height:auto;
  }

  .departures-cta{
    padding:22px;
    border-radius:22px;
  }

  .departures-cta .btn{
    width:100%;
  }
}
/* =========================
   SERVICES PAGE
   ========================= */

.services-page-hero{
  padding:72px 0 44px;
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(255,147,77,.16), transparent 60%),
    linear-gradient(180deg,#fff 0%,#fff8f3 100%);
}

.services-page-hero__content{
  max-width:860px;
}

.services-page-hero h1{
  font-size:clamp(40px,5.5vw,74px);
  line-height:.96;
  letter-spacing:-2px;
  margin-bottom:18px;
}

.services-page-hero p{
  color:var(--color-muted);
  font-size:clamp(18px,2vw,22px);
  line-height:1.55;
}

/* Main service */
.services-main{
  padding:56px 0 72px;
  background:#fff;
}

.services-main__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:start;
}

.services-main__content{
  padding:30px;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--color-border);
  box-shadow:0 14px 34px rgba(0,0,0,.05);
}

.services-main__content h2,
.services-care__content h2{
  font-size:clamp(30px,4vw,50px);
  line-height:1;
  letter-spacing:-1.4px;
  margin-bottom:18px;
}

.services-main__content p,
.services-care__content p{
  color:var(--color-muted);
  font-size:17px;
  line-height:1.65;
  margin-bottom:16px;
}

.services-main__content .btn{
  margin-top:10px;
}

.services-main__panel{
  padding:30px;
  border-radius:28px;
  background:
    radial-gradient(600px 260px at 10% 0%, rgba(255,147,77,.18), transparent 60%),
    #fff8f3;
  border:1px solid rgba(255,147,77,.24);
}

.services-main__panel h3{
  font-size:26px;
  line-height:1;
  letter-spacing:-.8px;
  margin-bottom:20px;
}

.services-checklist{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.services-checklist li{
  position:relative;
  padding-left:22px;
  color:#111;
  font-weight:700;
  line-height:1.45;
}

.services-checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--color-accent);
}

/* Care service */
.services-care{
  padding:72px 0;
  background:
    linear-gradient(180deg,#ffffff 0%,#fff8f3 100%);
}

.services-care__card{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:start;
  padding:34px;
  border-radius:30px;
  background:#fff;
  border:1px solid rgba(255,147,77,.24);
  box-shadow:0 18px 46px rgba(0,0,0,.07);
}

.services-care__highlight{
  padding:26px;
  border-radius:24px;
  background:#fff8f3;
  border:1px solid rgba(255,147,77,.24);
}

.services-care__highlight h3{
  font-size:24px;
  line-height:1;
  letter-spacing:-.6px;
  margin-bottom:18px;
}

.services-care__highlight ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.services-care__highlight li{
  position:relative;
  padding-left:22px;
  font-weight:800;
  color:#111;
}

.services-care__highlight li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--color-accent);
}

/* CTA services */
.services-final-cta{
  padding:72px 0 84px;
  background:#fff;
}

/* Responsive */
@media(max-width:900px){
  .services-main__grid,
  .services-care__card{
    grid-template-columns:1fr;
  }
}

@media(max-width:620px){
  .services-page-hero{
    padding:54px 0 32px;
  }

  .services-main,
  .services-care,
  .services-final-cta{
    padding:56px 0;
  }

  .services-main__content,
  .services-main__panel,
  .services-care__card,
  .services-care__highlight{
    padding:22px;
    border-radius:22px;
  }
}