@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Kanit", sans-serif;
  color: #444;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
}

.capa {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 20px;
}

.capa h3 {
  font-size: 36px;
  color: #ff3333;
}

.capabtn a {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: #444;
  color: #f4f4f4;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 0.5s ease-out infinite alternate;
}

.capabtn a:hover {
  background-color: #ff3333;
}

.capabtn i {
  color: #f4f4f4;
}

.btncapa {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu {
  width: 200px;
  height: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  border-radius: 7px;
}

.menu a {
  text-decoration: none;
  color: #ff3333;
}

.menu a:hover {
  text-decoration: none;
  color: #444;
}

.sobre,
.rotulos,
.logos,
.sites,
.mockup,
.web,
.congresso {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  text-align: center;
}

.sobre h3,
.rotulos h3,
.logos h3,
.sites h3,
.mockup h3,
.web,
.congresso h3 {
  font-size: 36px;
  color: #ff3333;
}

.rotinside {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.rotinside-item {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;

  margin-top: 5px;
  padding: 15px;
}

.rotinside-item1 {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;

  padding: 15px;
}

.rotinside-item2 {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;

  margin: 10px;
  padding: 15px;
}

.rotinside-item2 h3 {
  color: #444;
}

.logoinside {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.logoinside-item {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  padding: 15px;
}

.logoinside img {
  width: 90%;
}

.logoinside img:hover {
  width: 110%;
  transition: 0.5s;
}

@keyframes pulse {
  to {
    transform: scale(1.1);
  }
}

@media screen and (max-width: 768px) {
  .rotinside,
  .logoinside {
    flex-direction: column;
  }
}
