/* General Styles
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica, sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--white-color);
}

:root {
  --primary-color: #f60000;
  --secondary-color: #2f2d83;
  --white-color: #ffffff;
}

a {
  text-decoration: none;
}

.main {
  background: url("../assets/background.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  overflow: hidden;
}

/* Vectors Styles
-------------------------------------------------- */
.vector-1,
.vector-2 {
  width: 50%;
  height: auto;
}

.vector-2 {
  align-self: flex-end;
}

.vector-1 img,
.vector-2 img {
  width: 100%;
  height: 100%;
}

/* Content Styles
-------------------------------------------------- */
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin: 0 auto;
  row-gap: 30px;
}

.content-logo {
  width: 100%;
  display: flex;        /* fix */
  flex-direction: column;
}

.content-logo h2 {
  font-size: 44px;
}

.content-logo img {
  width: 50%;
}

.content-text {
  display: flex;
  flex-direction: column;
  /* column-gap: 60px; */
  width: 100%;
}

.title {
  display: flex;
  flex-direction: column;
}

.title span {
  padding: 10px 30px 0 10px;
  width: fit-content;
  font-size: 44px;
}

.title span:first-child {
  background-color: var(--primary-color);
}

.title span:last-child {     /* fix */
  background-color: var(--secondary-color);
}

.social-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.social-media a {
  display: flex;
  gap: 20px;
}

.social-media a img {
  width: 40px;
  height: 40px;
}

.social-media a p {
  font-size: 34px;
}

/* --------------------------------------------------
   Media Queries (desanidadas)
-------------------------------------------------- */



/* <= 1199px */
@media (min-width: 1199px) {
  .vector-1, .vector-2 { width: 30%; }
  .content-logo h2 { font-size: 30px; }
  .content-logo img { width: 60%; }
  .title span { font-size: 28px; }
  .social-media a img { width: 30px; height: 30px; }
  .social-media a p { font-size: 20px; }
}

/* <= 1500px */
@media (min-width: 1500px) {
  .vector-1, .vector-2 { width: 30%; }
  .content { width: 65%; }
}

/* <= 1600px */
@media (min-width: 1600px) {
  .content { width: 50%; }
}

/* <= 767px */
@media (max-width: 767px) {
  .main { height: 100dvh; justify-content: space-between; }

  .vector-1, .vector-2 { width: 85%; }

  .content {
    flex-direction: column;
    width: 70%;
  }

  .content-logo h2 { font-size: 28px; }

  .title span { font-size: 28px; }

  .social-media a img { width: 30px; height: 30px; }
  .social-media a p { font-size: 20px; }
}
