@charset "UTF-8";
/*!
Theme Name: Atipiko Brands
Theme URI: https://atipikobrands.com/
Author: Atipiko Brands
Author URI: https://atipikobrands.com/
Description: Um tema inclusivo para Atipiko Brands, Lda.
Text Domain: Thema Wordpress com ACF
Version: 1
*/
/* Reset de estilos */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Configurações padrão para blocos */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Reseta a aparência dos botões */
button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

/* Remove estilos padrão de links */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove a aparência do campo de pesquisa no Safari */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

/* Remove a aparência do contorno em formulários no Firefox */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:focus,
input:focus {
  outline: 0;
}

/* Remove a aparência de rolagem de textos em dispositivos móveis */
textarea {
  resize: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background-color: transparent;
  transition: background-color 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}
.site-header.is-scrolled {
  background-color: #6D5EA9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  padding: 14px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header {
  /* Desktop nav */
}
.site-header .main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header {
  /* BOTÃO HAMBURGER */
}
.site-header .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1101;
  position: relative;
}
.site-header .menu-toggle span {
  width: 45px;
  height: 2px;
  background: #F3F0E8;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.25s ease;
}
.site-header .menu-toggle.active span {
  background: #F3F0E8;
}
.site-header .menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.site-header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.site-header .menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.site-header {
  /* MOBILE FULLSCREEN MENU */
}
@media (max-width: 575px) {
  .site-header .menu-toggle {
    display: flex;
    position: fixed;
    right: 40px;
  }
  .site-header .main-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #6D5EA9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  }
  .site-header .main-nav ul {
    flex-direction: column;
    gap: 1.4rem;
    text-align: center;
  }
  .site-header .main-nav ul a {
    color: #F3F0E8;
    font-size: 22px;
    text-decoration: none;
  }
  .site-header .main-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-header .language-switcher {
    display: none;
  }
}

/* LINKS DO MENU (desktop e geral) */
.main-nav {
  display: flex;
}
.main-nav ul li {
  position: relative;
}
.main-nav ul li a {
  text-decoration: none;
  color: #F3F0E8;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.main-nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #F36F36;
  transition: width 0.3s ease;
}
.main-nav ul li a:hover {
  color: #F36F36;
}
.main-nav ul li a:hover::after {
  width: 100%;
}

/* SWITCHER DESKTOP */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 25px;
}
.language-switcher img {
  display: none;
}
.language-switcher .lang-item {
  list-style: none;
}
.language-switcher .lang-item::after {
  content: "|";
  margin-left: 0.5rem;
  color: #000000;
}
.language-switcher .lang-item:last-child::after {
  content: "";
  margin: 0;
}
.language-switcher .lang-item a {
  text-decoration: none;
  color: #fafafa;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
}
.language-switcher .lang-item a:hover {
  color: #F36F36;
}
.language-switcher .current-lang a {
  color: #ffffff;
  font-weight: 700;
  position: relative;
}

/* SWITCHER MOBILE — só aparece com menu aberto */
.language-mobile {
  display: none;
}
@media (max-width: 575px) {
  .language-mobile {
    display: none;
  }
}

@media (max-width: 575px) {
  .main-nav.active + .language-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 1102;
    padding: 12px 18px;
  }
  .main-nav.active + .language-mobile img {
    display: none;
  }
  .main-nav.active + .language-mobile a {
    text-decoration: none;
    color: #F3F0E8;
    font-weight: 500;
    font-size: 18px;
  }
  .main-nav.active + .language-mobile .lang-item {
    list-style: none;
  }
  .main-nav.active + .language-mobile .lang-item::after {
    content: "|";
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
  }
  .main-nav.active + .language-mobile .lang-item:last-child::after {
    content: "";
    margin: 0;
  }
}
/* trava scroll quando menu aberto */
body.menu-open {
  overflow: hidden;
}

.footer {
  background: #3b3569;
  color: rgba(255, 255, 255, 0.92);
  padding: 50px 0;
  position: relative;
  z-index: 10;
}
.footer .footer-top {
  display: flex;
  gap: 140px;
  align-items: start;
}
@media (max-width: 1000px) {
  .footer .footer-top {
    flex-direction: column;
    gap: 32px;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.footer__logo img {
  width: 170px;
  height: auto;
  display: block;
}
.footer__copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 60px;
  padding-top: 20px;
}
@media (max-width: 575px) {
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.footer__title {
  margin: 0 0 14px 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__list li + li {
  margin-top: 12px;
}
.footer__list a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}
.footer__list a:hover, .footer__list a:focus-visible {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer .footer-bootom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 575px) {
  .footer .footer-bootom {
    flex-direction: column;
  }
}
.footer__social {
  display: flex;
  gap: 18px;
}
@media (max-width: 1000px) {
  .footer__social {
    justify-content: flex-start;
    padding-top: 0;
  }
}
@media (max-width: 575px) {
  .footer__social {
    margin-top: 15px;
  }
}
.footer__icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  display: block;
}
.footer__icon:hover, .footer__icon:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.0625rem;
  transition: background-color 0.3s, color 0.3s;
  color: #000000;
  background-color: #F3F0E8;
}

.cover-image {
  position: relative;
  width: 100%;
}
.cover-image > img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  margin-bottom: 0.625rem;
}

h1 {
  font-size: 3.4375rem;
  font-weight: 800;
  line-height: 1;
}
@media (max-width: 1000px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}
@media (max-width: 1000px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 2.1875rem;
  line-height: 1;
}
@media (max-width: 575px) {
  h3 {
    font-size: 1.25rem;
  }
}

p {
  font-size: 1.0625rem;
  line-height: 1.4;
}

a {
  font-size: 1.0625rem;
  line-height: 1.4;
}

.wysiwyg-content {
  width: 100%;
  margin: 0 auto;
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 575px) {
  .wysiwyg-content {
    width: 100%;
  }
}
.wysiwyg-content h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  margin: 28px 0 18px;
}
.wysiwyg-content h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin: 24px 0 16px;
}
.wysiwyg-content p,
.wysiwyg-content span {
  font-size: 1.0625rem;
  line-height: 1.5;
  margin-bottom: 15px;
}
.wysiwyg-content p:last-child,
.wysiwyg-content span:last-child {
  margin-bottom: 20px;
}
.wysiwyg-content blockquote {
  font-style: italic;
  border-left: 4px solid #ccc;
  padding-left: 16px;
  margin: 20px 0;
  color: #666;
}
.wysiwyg-content ul,
.wysiwyg-content ol {
  padding-left: 15px;
  margin-left: 10px;
  margin-bottom: 30px;
}
.wysiwyg-content ul {
  list-style-type: disc;
}
.wysiwyg-content ol {
  list-style-type: decimal;
}
.wysiwyg-content li {
  margin-bottom: 15px;
}
.wysiwyg-content a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.wysiwyg-content a:hover {
  color: #0f5bb5;
  text-decoration: underline;
}
.wysiwyg-content u {
  text-decoration: underline;
}
.wysiwyg-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
}
.wysiwyg-content strong {
  font-weight: bold;
}
.wysiwyg-content em {
  font-style: italic;
}

.container {
  max-width: 1850px;
  padding: 0 50px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1000px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 575px) {
  .container {
    padding: 0 30px;
  }
}

.mg-mx {
  margin: 100px 0;
}
@media (max-width: 575px) {
  .mg-mx {
    margin: 50px 0;
  }
}

.mg-md {
  margin: 50px 0;
}

.mg-pd {
  margin: 20px 0;
}

.pd-mx {
  padding: 100px 0;
}
@media (max-width: 575px) {
  .pd-mx {
    padding: 50px 0;
  }
}

.pd-md {
  padding: 50px 0;
}

.pd-pd {
  padding: 20px 0;
}

.grid, .hero_content .container, .overview .container, .hero .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 35px;
}
@media (max-width: 1000px) {
  .grid, .hero_content .container, .overview .container, .hero .container {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 575px) {
  .grid, .hero_content .container, .overview .container, .hero .container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 1;
  background: #F36F36;
  color: #F3F0E8;
}
@media (max-width: 1000px) {
  .hero {
    padding-top: 100px;
    height: 850px;
  }
}
.hero .container {
  align-items: stretch;
}
.hero__content {
  grid-column: span 6;
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
@media (max-width: 1000px) {
  .hero__content {
    grid-column: span 6;
  }
}
@media (max-width: 575px) {
  .hero__content {
    grid-column: span 4;
    padding: 0;
  }
}
.hero__content h1 {
  margin: 0;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 3.6vw, 64px);
}
.hero__content p {
  margin: 0;
  max-width: 52ch;
  line-height: 1.6;
  opacity: 0.95;
  font-size: clamp(14px, 1.2vw, 16px);
}
.hero__media {
  grid-column: span 6;
  position: relative;
  overflow: hidden;
  height: 100vh;
}
@media (max-width: 1000px) {
  .hero__media {
    grid-column: span 6;
  }
}
@media (max-width: 575px) {
  .hero__media {
    grid-column: span 4;
    height: 100vh;
  }
}
.hero__media .svg {
  position: absolute;
  width: 0;
  height: 0;
}
.hero__media .clipped {
  width: 100%;
  height: 95vh;
  background-size: cover;
  -webkit-clip-path: url(#my-clip-path);
  clip-path: url(#my-clip-path);
}
@media (max-width: 575px) {
  .hero__media .clipped {
    height: 350px;
  }
}
.hero__media .clipped::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: 2;
  /* IMPORTANT: mesmo id do clipPath do SVG */
}

.purpose {
  position: relative;
  top: 0;
  z-index: 2;
  background: #F3F0E8;
}
.purpose .pattern img {
  width: 100%;
}
.purpose .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) {
  .purpose .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .purpose .container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.purpose .svc-card {
  padding: 50px 20px;
  position: relative;
  height: 80dvh;
}
.purpose .svc-card:nth-child(2) {
  background-color: rgb(226, 226, 226);
}
.purpose .svc-card {
  /* animação suave */
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  outline: none;
}
.purpose .svc-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.purpose .svc-card__title {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.purpose .svc-card__toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.purpose .plus {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
}
.purpose .plus::before,
.purpose .plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: rgba(0, 0, 0, 0.65);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}
.purpose .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.purpose {
  /* BODY - fechado por default */
}
.purpose .svc-card__body {
  margin-top: 18px;
  /* escondido */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
}
.purpose {
  /* conteúdo */
  /* ABRIR no hover e no focus (teclado) */
}
.purpose .svc-card:hover,
.purpose .svc-card:focus-within {
  transform: translateY(-2px);
}
.purpose .svc-card:hover .svc-card__body,
.purpose .svc-card:focus-within .svc-card__body,
.purpose .svc-card.is-open .svc-card__body {
  max-height: 360px;
  /* suficiente p/ texto + lista */
  opacity: 1;
  transform: translateY(0);
}
.purpose {
  /* Ícone vira "x" quando aberto */
}
.purpose .svc-card:hover .plus::after,
.purpose .svc-card:focus-within .plus::after,
.purpose .svc-card.is-open .plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
  /* some o vertical = vira "-" */
  opacity: 0;
}
.purpose {
  /* Mobile: uma coluna */
}
@media (max-width: 900px) {
  .purpose .services__grid {
    grid-template-columns: 1fr;
  }
}

.features {
  --bg: #6c62a8;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.28);
  background: var(--bg);
  color: var(--text);
  padding: clamp(56px, 6vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.features .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.features {
  /* ===== Decorations (FORA do container) ===== */
}
.features__decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  height: auto;
  display: block;
}
.features__decoration--blue {
  top: clamp(-40px, -6vw, -100px);
  right: clamp(-150px, -8vw, -160px);
  width: clamp(260px, 34vw, 560px);
}
.features__decoration--orange {
  bottom: clamp(-70px, -9vw, -170px);
  left: clamp(-200px, -12vw, -220px);
  width: clamp(260px, 34vw, 560px);
}
.features {
  /* O teu header/grid (mantém) */
}
.features__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(36px, 4vw, 56px);
}
.features__header h2 {
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(34px, 4.4vw, 56px);
  color: #fff;
}
.features__header p {
  margin: 0 auto;
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.7;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.features__grid .feature {
  padding: clamp(22px, 3vw, 34px) clamp(18px, 3vw, 36px);
  text-align: center;
}
.features__grid .feature h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.features__grid .feature p {
  margin: 0 auto;
  max-width: 28ch;
  color: var(--muted);
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.7;
}
.features__grid .feature:not(:nth-child(3n)) {
  border-right: 1px solid var(--line);
}
.features__grid .feature:nth-child(-n+3) {
  border-bottom: 1px solid var(--line);
}
.features {
  /* Responsivo grid (mantém o teu) */
}
@media (max-width: 860px) {
  .features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .features__grid .feature {
    border-right: none;
    border-bottom: none;
  }
  .features__grid .feature:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
  .features__grid .feature:nth-child(-n+4) {
    border-bottom: 1px solid var(--line);
  }
  .features__decoration--blue {
    width: clamp(180px, 34vw, 320px);
    top: -70px;
    right: -150px;
    opacity: 0.95;
  }
  .features__decoration--orange {
    width: clamp(260px, 60vw, 520px);
    bottom: -160px;
    left: -240px;
    opacity: 0.95;
  }
}
@media (max-width: 520px) {
  .features__decoration--blue {
    width: 210px;
    top: -80px;
    right: -160px;
    opacity: 0.9;
  }
  .features__decoration--orange {
    width: 320px;
    bottom: -180px;
    left: -260px;
    opacity: 0.9;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .features__grid .feature {
    border-right: none !important;
  }
  .features__grid .feature:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }
}

.overview {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 3;
  background: #6D5EA9;
  color: #F3F0E8;
}
@media (max-width: 1000px) {
  .overview {
    padding-top: 100px;
    height: block;
  }
}
.overview .container {
  align-items: stretch;
}
.overview__content {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
@media (max-width: 1000px) {
  .overview__content {
    grid-column: span 6;
  }
}
@media (max-width: 575px) {
  .overview__content {
    grid-column: span 4;
  }
}
.overview__content .destaque {
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1.3;
}
.overview__content p {
  margin: 0;
  max-width: 52ch;
  line-height: 1.6;
  opacity: 0.95;
}
.overview__media {
  grid-column: span 6;
  position: relative;
  overflow: hidden;
  height: 100vh;
}
@media (max-width: 1000px) {
  .overview__media {
    grid-column: span 6;
  }
}
@media (max-width: 575px) {
  .overview__media {
    grid-column: span 4;
    height: 350px;
  }
}
.overview__media .svg {
  position: absolute;
  width: 0;
  height: 0;
}
.overview__media .clip {
  width: 100%;
  height: 100dvh;
  background: turquoise url(https://source.unsplash.com/600x600?summer);
  background-size: cover;
  -webkit-clip-path: url(#my-clip-path-one);
  clip-path: url(#my-clip-path-one);
}
@media (max-width: 575px) {
  .overview__media .clip {
    height: 350px;
  }
}

.alter {
  background-color: #F36F36;
}
.alter .btn {
  background-color: #6D5EA9;
}

.cards-full {
  position: relative;
  top: 0;
  height: 90vh;
  z-index: 3;
}
@media (max-width: 1000px) {
  .cards-full {
    height: auto;
  }
}
.cards-full {
  /* GRID FULLWIDTH */
}
.cards-full__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
@media (max-width: 960px) {
  .cards-full__grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.card {
  position: relative;
  height: 90vh;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.35) 0%, rgba(2, 6, 23, 0.55) 45%, rgba(2, 6, 23, 0.85) 100%);
  z-index: 0;
}
.card__inner {
  position: relative;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.card__content {
  padding-bottom: 50px;
}
.card__title {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  padding-top: 40px;
}
.card__text {
  margin: 0;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

/* Container base */
.cta-contact {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #fff;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  scroll-margin-top: 90px;
}
.cta-contact__content {
  grid-column-start: 2;
  grid-column-end: 7;
}
@media (max-width: 575px) {
  .cta-contact__content {
    grid-column-start: 1;
    grid-column-end: 5;
  }
}
.cta-contact__title {
  margin: 0 0 18px 0;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(34px, 4.2vw, 54px);
  color: #0f172a;
}
.cta-contact__text {
  margin: 0 0 22px 0;
  max-width: 52ch;
  line-height: 1.7;
  font-size: clamp(14px, 1.1vw, 16px);
  color: #334155;
}
.cta-contact .cta-contact__links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cta-contact__image {
  position: relative;
  justify-items: end;
  grid-column-start: 8;
  grid-column-end: 12;
}
@media (max-width: 575px) {
  .cta-contact__image {
    grid-column-start: 1;
    grid-column-end: 5;
  }
}
.cta-contact__image img {
  width: min(420px, 100%);
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .cta-contact__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .cta-contact__content {
    max-width: 680px;
  }
  .cta-contact__image {
    justify-items: start;
  }
  .cta-contact__image img {
    width: min(420px, 90%);
    transform: none;
  }
  .cta-contact__image::after {
    display: none;
  }
}
@media (max-width: 575px) {
  .cta-contact {
    padding-top: 42px;
  }
  .cta-contact__links {
    gap: 10px;
  }
  .cta-contact .cta-link {
    width: 100%;
    justify-content: center;
  }
}

.hero_content {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 1;
  background: #F36F36;
  color: #F3F0E8;
}
@media (max-width: 1000px) {
  .hero_content {
    padding-top: 100px;
    height: 850px;
  }
}
.hero_content .container {
  align-items: stretch;
}
.hero_content__content {
  grid-column: span 6;
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
@media (max-width: 1000px) {
  .hero_content__content {
    grid-column: span 6;
  }
}
@media (max-width: 575px) {
  .hero_content__content {
    grid-column: span 4;
    padding: 0;
  }
}
.hero_content__content h1 {
  margin: 0;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 3.6vw, 64px);
}
.hero_content__content p {
  margin: 0;
  max-width: 52ch;
  line-height: 1.6;
  opacity: 0.95;
  font-size: clamp(14px, 1.2vw, 16px);
}
.hero_content__media {
  grid-column: span 6;
  position: relative;
  overflow: hidden;
  height: 100vh;
}
@media (max-width: 1000px) {
  .hero_content__media {
    grid-column: span 6;
  }
}
@media (max-width: 575px) {
  .hero_content__media {
    grid-column: span 4;
    height: 100vh;
  }
}
.hero_content__media .svg {
  position: absolute;
  width: 0;
  height: 0;
}
.hero_content__media .clippe {
  width: 100%;
  height: 350px;
  background: turquoise url(https://source.unsplash.com/600x600?summer);
  background-size: cover;
  -webkit-clip-path: url(#my-clip-path);
  clip-path: url(#my-clip-path);
}

.cont_section {
  position: sticky;
  padding: 80px 0;
  top: 0;
  z-index: 2;
  background-color: #F3F0E8;
}
.cont_section .container h2 {
  grid-column-start: 2;
  grid-column-end: 4;
}
@media (max-width: 575px) {
  .cont_section .container h2 {
    grid-column-start: 1;
    grid-column-end: 4;
  }
}
.cont_section .container .wysiwyg-content {
  grid-column-start: 6;
  grid-column-end: 12;
}
@media (max-width: 575px) {
  .cont_section .container .wysiwyg-content {
    grid-column-start: 1;
    grid-column-end: 5;
  }
}

.cont_chalenge {
  background-color: #6D5EA9;
  color: #F3F0E8;
}
.cont_chalenge .wysiwyg-content {
  color: #F3F0E8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #F36F36;
  color: #F3F0E8;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover {
  background: rgb(86.6882591093, 73.8137651822, 138.1862348178);
  transform: translateX(-1px);
}

/*# sourceMappingURL=style.css.map */
