@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
    background: #f5f5f5;
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}


header {
    width: 100%;
    max-width: 1165px;
    /* position: sticky; */
    top: 20px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #111c38; /* levemente mais escuro ao rolar */
    backdrop-filter: blur(200px);
    border-radius: 10px;
    margin: 20px auto;
    transition: background-color 0.3s ease;
}

header img {
    height: 100px;
    width: auto;
}

header.scrolled {
    background: rgba(17, 17, 17, 0.5);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    scroll-margin-top: 300px; /* altura do menu */
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    position: relative;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu li:hover {
    color: #f39c12;

}

.nav-menu button {
    background: linear-gradient(135deg, #f1b330, #8b6514);
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 0 15px rgba(21, 27, 87, 0.5);
}

.nav-menu button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.8);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes neon-pulse {
    0%, 100% {
        text-shadow: 0 0 10px #f39c12, 0 0 20px #f39c12, 0 0 30px #f39c12;
    }
    50% {
        text-shadow: 0 0 15px #f39c12, 0 0 25px #f39c12, 0 0 35px #f39c12;
    }
}

@keyframes particle {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

.background-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: radial-gradient(circle at 50% 25%, #111C38 0%, #07061f 70%);
    z-index: -1;
    pointer-events: none;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
}

.footer {
    background-color: #0e162e;
    width: 100%;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    color: #ffffff;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    margin-top: auto;
}

.footer p, .footer span{
    color: #fff;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.brand p {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #ffffff;
}

.social-icons a img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.newsletter form {
    display: flex;
    max-width: 250px;
    margin-top: 10px;
}

.newsletter input[type="email"] {
    padding: 8px;
    border: none;
    border-radius: 4px 0 0 4px;
    flex: 1;
}

.newsletter button {
    background-color: orange;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #1f2a4c;
    padding-top: 15px;
    font-size: 13px;
}

.footer-bottom p {
    color: #ffffff;
}

.logo {
    width: 100px;
}

.hero {
    width: 100%;
    max-width: 1164px;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: white;
    /* padding: 80px 20px; */
    box-sizing: border-box;
}

.hero h1 {
    color: #111C38;
    font-size: 47.25px;
    text-align: left;
}

.hero p {
    color: #111C38;
    font-size: 18px;
    text-align: left;
    width: 100%;
    max-width: 600px;
    font-weight: 500;
}

.hero button {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
}

.hero button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.8);
}

.hero .left-hero {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

.sobre-blessed {
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.sobre-blessed .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.imagem {
    flex: 1 1 300px;
    height: 100%;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.imagem img{
    width: 100%;
    border-radius: 10px;
}

.conteudo {
    flex: 1 1 500px;
}

.conteudo h2 {
    color: #0b3053;
    font-size: 28px;
    margin-bottom: 20px;
}

.conteudo h3 {
    color: #0b3053;
    font-size: 18px;
    margin-bottom: 10px;
}

.conteudo p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.metricas {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.metrica {
    border-left: 3px solid #111C38;
    padding-left: 12px;
    flex: 1 1 auto;
    min-width: 150px;
}

.metrica .numero {
    display: block;
    font-weight: bold;
    font-size: 20px;
    color: #0b3053;
}

.metrica .descricao {
    font-size: 14px;
    color: #555;
}

.beneficios {
    width: 100%;
    max-width: 1164px;
    text-align: center;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

.beneficios h2 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 10px;
}

.beneficios h2 span {
    color: #003366;
    font-weight: bold;
}

.beneficios .subtitulo {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 30px;
}
  /* Faixa de scroll horizontal */
    .beneficios-scroll {
      display: flex;
      gap: 2rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding: 2rem 0;
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    }

    /* Ocultar scrollbar */
    .beneficios-scroll::-webkit-scrollbar {
      display: none;
    }

    /* Card de benefício */
    .beneficio {
      flex: 0 0 300px;
      background-color: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      scroll-snap-align: start;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .beneficio:hover {
      transform: translateY(-5px);
    }

.beneficio {
    max-width: 250px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 30px 20px;
    flex-shrink: 0;
    text-align: center;
    background-color: #f5f5f5;
}

.beneficio .icone {
    font-size: 30px;
    background-color: #111C38;
    color: #f39c12;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beneficio h3 {
    color: #003366;
    font-size: 18px;
    margin-bottom: 10px;
}

.beneficio p {
    font-size: 14px;
    color: #555;
}

.cta {
    margin-top: 30px;
}
 /* Wrapper do carousel */
    .beneficios-wrapper {
      position: relative;
      overflow: hidden;
      padding: 0 50px;
      background-color: #0f1c3f;
      border-radius: 10px;
    }
   .beneficio-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #0f1c3f;
      border: none;
      font-size: 24px;
      font-weight: bold;
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      z-index: 10;
    }

    .beneficio-nav.left {
      left: 3px;
    }

    .beneficio-nav.right {
      right: 3px;
    }

    .beneficio-nav:hover {
      background-color: #1a2952;
    }

.botao {
    background-color: #ffa500;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    display: inline-block;
}

.botao:hover {
    background-color: #e69500;
}

.parceiras {
    padding: 60px 20px;
    text-align: center;
    width: 100%;
    max-width: 1164px;
}

.parcerias-container{
    width: 100%;
    height: 100%;
    background: #111C38;
    border-radius: 10px;
}

.parceiras__texto h2 {
    font-size: 24px;
    color: #003366;
    margin-bottom: 8px;
}

.parceiras__texto h3 {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.parceiras__lista {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    max-width: 1164px;
    margin: 0 auto;
}

.parceiras__lista::-webkit-scrollbar {
    height: 6px;
}

.parceiras__lista::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.parceiras__item {
  flex: 0 0 auto;
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.parceiras__lista:active {
  cursor: grabbing;
}

.parceiras__item {
  scroll-snap-align: start;
}


.parceiras__item:hover {
    transform: translateY(-4px);
}

.parceiras__item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
}

.parceiras__botao {
  display: none;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s ease;
}


.parceiras__item:hover .parceiras__botao {
  display: inline-block;
}

.parceiras__botao:hover {
    background-color: #005fa3;
}

.parceiras__lista {
  scrollbar-width: none;         /* Firefox */
  -ms-overflow-style: none;      /* IE/Edge */
}

.parceiras__lista::-webkit-scrollbar {
  display: none;                 /* Chrome, Safari, Opera */
}

/* Swiper Styles */
.slide-container {
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
    margin: 0 auto;
}

.slide-partners-hl {
    font-size: 24px;
    color: #003366;
    margin-bottom: 30px;
}

.slide-content {
    margin: 0 40px;
    overflow: hidden;
    border-radius: 25px;
}

.card {
    border-radius: 25px;
    background-color: #FFF;
}

.image-content,
.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}

.image-content {
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #003552;
    border-radius: 25px 25px 0 25px;
}

.overlay::before,
.overlay::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #003552;
}

.overlay::after {
    border-radius: 0 25px 0 0;
    background-color: #FFF;
}

.card-image {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #FFF;
    padding: 3px;
}

.card-image .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #003552;
}


/* Responsividade */
@media (max-width: 1200px) {
    .hero, .beneficios, .sobre-blessed, .slide-container {
        max-width: 95%;
    }
    

}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }

    
    .beneficio {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    
    .hamburger {
        display: block;
        z-index: 10001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #111c38;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.3s ease;
        z-index: 10000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .hero {
        flex-direction: column;
        padding: 60px 20px;
    }
    
    .hero img {
        max-width: 100%;
        order: -1;
    }
    
    .testimonial-wrapper {
        flex-direction: column;
        flex-wrap: wrap;
    }
    
    .testimonial-content {
        max-width: 100%;
        margin-top: 20px;
        text-align: center;
    }
    
    .testimonial-image {
        margin-bottom: 20px;
    }
    
    .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        flex: 1 1 100%;
    }
    
    .newsletter form {
        flex-direction: column;
        margin: 0 auto;
    }
    
    .newsletter input[type="email"],
    .newsletter button {
        border-radius: 4px;
        width: 100%;
        margin: 5px 0;
    }
    
    .metricas {
        flex-direction: column;
        gap: 20px;
    }
    
    .metrica {
        width: 100%;
    }
}

@media (max-width: 576px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        margin: 0;
    }
    
    body {
        padding-top: 80px;
    }
    
    .hero h1 {
        font-size: 28px;
        text-align: center;
    }
    
    .hero p {
        text-align: center;
    }
    
    .hero .left-hero {
        align-items: center;
    }
    
    .testimonial-section {
        padding: 40px 15px 160px 15px;
    }
    
    .beneficios h2, .parceiras__texto h2 {
        font-size: 22px;
    }
    
    .parceiras__item {
        width: 180px;
    }
    
    .slide-container {
        padding: 20px 0;
    }
    
    .slide-content {
        margin: 0 20px;
    }
    
    .card-image {
        height: 120px;
        width: 120px;
    }
    
    .beneficio {
        min-width: 100%;
    }
    
    .sobre-blessed .imagem {
        height: 250px;
    }
}

/* Animações para menu mobile */
@media (max-width: 768px) {
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    /* Script para ativar o menu mobile */
    /* Este código deve ser adicionado ao script.js */
    /* 
    document.querySelector('.hamburger').addEventListener('click', function() {
        this.classList.toggle('active');
        document.querySelector('.nav-menu').classList.toggle('active');
    });
    */
}


 .testimonial-card {
    flex: 0 0 90%;
    max-width: 600px;
    scroll-snap-align: start;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  @media (min-width: 768px) {
    .testimonial-card {
      flex: 0 0 45%;
    }
  }

  @media (min-width: 1024px) {
    .testimonial-card {
      flex: 0 0 33%;
    }
  }

  #testimonial-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FFF;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 10;
  }

  .testimonial-nav.left {
    left: 10px;
  }

  .testimonial-nav.right {
    right: 10px;
  }

  .avatar {
    background: #E0F2FE;
    color: #0EA5E9;
    font-weight: bold;
    border-radius: 9999px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .avatar img {
    background: #E0F2FE;
    color: #0EA5E9;
    font-weight: bold;
    border-radius: 9999px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  
    /* Botão flutuante */
    .floating-button {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #f1b330; /* Cor principal */
      color: #0f1c3f; /* Cor do texto */
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 16px;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(241, 179, 48, 0.5);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(241, 179, 48, 0.6);
      background-color: #f7c04e;
    }

    .floating-button:active {
      transform: translateY(0);
      box-shadow: 0 4px 8px rgba(241, 179, 48, 0.4);
    }

    /* Ícone do botão */
    .button-icon {
      width: 24px;
      height: 24px;
    }

    /* Animação de pulsar para chamar atenção */
    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        transform: scale(1);
      }
    }

    .pulse {
      animation: pulse 2s infinite;
    }

    /* Estilos responsivos */
    @media (max-width: 768px) {
      .floating-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
      }
    }

  .logo-container {
  width: 150px; /* ou o tamanho da área útil da logo */
  height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container img{

  width: 190px;
  height: 100%;
  object-fit: cover;
  object-position: center;

}

.footer__socials-wrapper{
    display: flex;
    gap: 0.4rem;
}
.footer__social-link {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.25rem;
    background-color: #f1b330;
    color: #111c38;
    place-items: center;
    border-radius: 50%;
}

.dropdown-label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  list-style: none;
  padding: 10px 0;
  z-index: 999;
  min-width: 180px;
}

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu li a {
  text-decoration: none;
  color: #333;
  display: block;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a:hover {
  background-color: #f5f5f5;
}


.contact {
    padding: 10rem 0;
    background-color: var(--light-gray)
}

.contact__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow);
    text-align: center;
    margin-top: 2rem;
    line-height: 1.2
}

.contact__title--social {
    margin-top: 0;
    color: var(--blue);
    margin-bottom: 2rem
}

.contact__span {
    display: block;
    font-size: 1.125rem;
    color: var(--white);
    text-align: center
}

.contact__container {
    margin: 0 auto;
    max-width: 64rem;
    padding: 0 4rem
}

.contact__content {
    position: relative;
    border-radius: 3.75rem 3.75rem 0 0;
    border: .375rem solid var(--yellow);
    border-bottom: none;
    background-color: var(--blue);
    min-height: 17.5rem
}

.contact__cards {
    position: relative;
    left: -2rem;
    margin-top: -5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.25rem;
    width: calc(100% + 4rem)
}

.contact__card {
    flex: 1 1;
    position: relative;
    border-radius: .75rem;
    background-color: var(--white);
    padding: 6rem 1rem 4rem
}

.contact__card,.contact__card-icon {
    box-shadow: 0 0 .75rem .125rem rgba(0,0,0,.15)
}

.contact__card-icon {
    display: grid;
    place-items: center;
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    font-size: 2rem;
    background-color: var(--yellow);
    color: var(--blue)
}

.contact__card-span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    gap: .5rem;
    font-size: 1.125rem;
    white-space: pre
}

@media screen and (max-width: 48rem) {
    .contact__card {
        padding:4rem 1rem 3rem
    }

    .contact__card-icon {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem
    }

    .contact__card-span {
        font-size: 1rem
    }
}

.contact__socials {
    margin-top: 3rem;
    padding: 2rem 0;
    background-color: var(--white)
}

.contact__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem
}

.contact__social-link {
    display: grid;
    place-items: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    font-size: 2rem;
    background-color: var(--blue);
    color: var(--yellow);
    box-shadow: 0 0 .75rem .125rem rgba(0,0,0,.15)
}

@media screen and (max-width: 48rem) {
    .contact {
        padding:10rem 0 7rem
    }

    .contact__title {
        font-size: 1.25rem
    }

    .contact__span {
        font-size: .875rem
    }

    .contact__span,.contact__title {
        padding: 0 1rem
    }

    .contact__container {
        padding: 0 2.75rem
    }

    .contact__content {
        min-height: 14rem
    }

    .contact__cards {
        left: -1.375rem;
        margin-top: -3rem;
        width: calc(100% + 2.75rem)
    }

    .contact__card:last-of-type-span {
        white-space: normal;
        word-break: break-all
    }

    .contact__wrapper {
        gap: 1.5rem
    }

    .contact__social-link {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem
    }
}
