@import url(../Style/transition.css);
@import url(../Style/cursor.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background: #060916;
    font-family: "Inter", sans-serif;
    color: #f6f6f6;
}

img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
}


::-webkit-scrollbar {
    display: none;
}

/*SEÇÃO CARDS*/

h2 {
font-family: 'unica one', sans-serif;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading {
  font-size: 4.5rem;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'unica one', sans-serif;
}

.section {
  overflow: hidden;
}

.wrapper {
  height: 100vh;
}

.list {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  padding: 0.2rem;
}

.item {
  width: 100vw;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  box-shadow: rgba(70, 74, 78, 0.2) 0px 8px 24px;
  overflow: hidden;
}

.item_p {
    color: #333333;
}

.item_number {
  font-size: 1.5rem;
  height: 3rem;
  width: 3rem;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background-color: #c1121f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;

}


.item_content {
  background-color: #f6f6f6;
  color: #292929;
  /* MODIFICAÇÃO: Usando flexbox para alinhar o conteúdo verticalmente */
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: flex-start;
  padding: 3rem;
  position: relative;
  width: 50%;
}

.item_media {
  object-fit: cover;
  width: 50%;
  height: 100%;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-vertical {
  padding: 2rem;
}

dotlottie-player {
    position: relative;
    top: 0;
    left: 45%;
}

a {
    text-decoration: none;
    color: #060916;
    font-family: 'unica one', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
}

button {
    color: #c1121f;
    font-weight: lighter;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #c1121f;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    transition: 0.3s;
    z-index: 10000; /* Mantido */
    margin-top: 2rem;
    padding: 1rem 2rem;
}

button a {
    color: #c1121f;
}

button:hover {
    background: none; /* Original */
    border: 2px solid rgba(230, 62, 62, 0.25); /* Original */
    color: rgba(26, 3, 3, 0.75); /* Adicionado para feedback */
    transform: scale(1.05);
    transition: all 0.3s ease;
    cursor: pointer;
}


@media (max-width: 575.98px) {
  .heading {
    font-size: 2.5rem;
  }

  .item {
    display: flex;
    flex-direction: column;
  }

  .item_content,
  .item_media {
    height: 50vh;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .item_number {
    font-size: 1.2rem;
    height: 1.5rem;
    width: 1.5rem;
    margin-bottom: 1rem;
  }
}




@media (max-width: 768px) {

    .cursor {
        display: none;
    }
}

@media (max-width: 920px) {

    .cursor {
        display: none;
    }
}