* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  background: #041CBC;
}

/* ========================================
   CONTACT SECTION
======================================== */

.contact-section{
    position: relative;
    height: 100vh;
    max-width: 100vw;
    color: white;
    background-color: #041CBC;
    font-family: Helvetica;
    overflow-x: hidden;

}

.contact-logo{
    height: 5vh;
    width: auto;
    margin-top: 5vh;
    margin-left: 5vw;
}

.info{
    max-width:100vw;
    display: flex;
    flex-direction:column;
    align-items: center;
    margin-top: 5vh;
}

.info p{
    font-size: clamp(1vh, 1.5vh, 2vh);
}

.info h1{
    margin-top: 6.5vh;
    font-size: clamp(3vh, 5vh, 6vh);
}

.contact-container {
    width: 90vw;
    margin: 8vh auto 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5vw;
    align-items: start;
}

/* Lado esquerdo - Informações de contato */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 4vh;
    padding-top: 2vh;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2vw;
    margin-left:10vw;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-icon img {
    width:10vw;
    height:10vh
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.5vh;
    margin-top: 2vh;
}

.contact-label {
    font-size: clamp(1.8rem, 2.2vw, 2rem);
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-value {
    font-size: clamp(1rem, 2vw, 1.8rem);
    font-weight: 400;
}

/* Lado direito - Formulário */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: clamp(1rem, 1.5vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: 2.5vh;
    width: 40vw;
    height: 50vh;
}

.form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 540;
}

.form-group label {
    color: #000;
    font-size: clamp(1rem, 1.5vw, 3rem);
    letter-spacing: 0.5px;
    border-radius: 50%;
    width: auto;
    white-space: nowrap;
}

.form-group input,
.form-group textarea{
    border: none;
    padding: 1vh 0 2px 0.5vw;
    font-size: clamp(1rem, 1.5vw, 2rem);
    font-family: Helvetica;
    color: #666;
    outline: none;
    border-bottom: 2px solid #afafaf;
}

.form-group input {
    height: 2.5rem; 
    margin-left: 10px;
    padding-bottom: 0 !important;
    padding-top: 0;
    line-height: 1; 
    display: flex;
    align-items: flex-end;
}


.form-group select {
    border-radius: 50px !important;
    background: #F5F5F5;
    border: none;
    border-radius: 8px;
    padding: 1.2vh 1.5vw;
    letter-spacing: 0.5px;
    margin-left: 0.5vw;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-family: Helvetica;
    color: #666;
    outline: none;
} 

textarea{
    height:4vh;
    width: 100%;
    height: 1.5rem; 
    border: none;
    padding: 0vh 1.2vw;
    padding-bottom: 4vh;
    font-size: clamp(1rem, 1.5vw, 2rem);
    font-family: Helvetica;
    color: #666;
    outline: none;
    border-bottom: 2px solid #afafaf;
    resize:none;
    white-space: nowrap;
    overflow: hidden;
}

input{
    width: 100%;
    border-bottom: 2px solid #afafaf;
    height: 1.5rem; 
    margin-left: 10px;
    padding-bottom: 0 !important;
    padding-top: 0;
    line-height: 1; 
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}


/* .form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: #ECECEC;
} */

input::placeholder,
textarea::placeholder {
    color: #999;
    font-size: clamp(1rem, 1.5vw, 2rem);
}


.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5vw center;
    background-size: 12px;
    padding-right: 3vw;
    color: #000;
    font-weight: 600;
}

.form-group textarea {
    resize: vertical;
    min-height: 1vh;
    width: 100%;
}

.submit-btn {
    background: #041CBC;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1.5vh 0;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 700;
    font-family: Helvetica;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-top: 1vh;
}

.submit-btn:hover {
    opacity: 0.9;
}

@media (max-width: 767px) {
    .contact-section {
    height: auto;
    min-height: 100vh;
    padding-bottom: 5vh;
  }
 
  .contact-logo {
    height: 4vh;
    margin-top: 3vh;
  }
 
  .info {
    margin-top: 3vh;
    padding: 0 5vw;
    text-align: center;
  }
 
  .info p {
    font-size: 1.8vh;
  }
 
  .info h1 {
    margin-top: 2vh;
    font-size: 3vh;
  }
 
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4vh;
    width: 90vw;
    margin: 5vh auto 0;
  }
 
  .contact-left {
    gap: 3vh;
    padding-top: 0;
  }
 
  .contact-item {
    margin-left: 0;
    gap: 4vw;
  }
 
  .contact-icon svg {
    width: 12vw;
    height: 6vh;
  }
 
  .contact-text {
    margin-top: 0.5vh;
  }
 
  .contact-label {
    font-size: 2.2vh;
  }
 
  .contact-value {
    font-size: 1.8vh;
  }
 
  .contact-form {
    height:60vh;
    width: 100%;
    padding: 4vh 5vw;
    gap: 2vh;
    border-radius: 15px;
  }
 
  .form-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1vh;
  }
 
  .form-group label {
    font-size: 2.5vh;
  }
 
  .form-group input,
  .form-group textarea {
    font-size: 2vh;
    padding: 1vh 2vw;
  }
 
  .form-group select {
    font-size: 1.8vh;
    padding: 1vh 2vw;
    background-position: right 4vw center;
    padding-right: 12vw;
  }
 
  textarea {
    font-size: 2vh;
    padding: 1vh 2vw;
  }
 
  input::placeholder,
  textarea::placeholder {
    font-size: 2vh;
  }
 
  .submit-btn {
    padding: 1.8vh 0;
    font-size: 2vh;
    margin-top: 2vh;
  }
}


/* ========================================
   LAST SECTION
======================================== */

.last-section{
    position: relative;
    min-height: 100vh;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    font-family: Helvetica;
    background-color: #041CBC;
    color: white;
    overflow: hidden;
    z-index: 11;
}

.last-section a{
  color: #fff !important;
}
.last-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 69.5%;
  width: 12%;
  height: 3px;
  background: white;
  transform: rotate(15deg);
  transform-origin: left center;
}

.last-section::after {
  content: '';
  position: absolute;
  top: 62%;
  left: 71%;
  width: 10%;
  height: 3px;
  background: white;
  transform: rotate(15deg);
  transform-origin: left center;
}

.last-section .languages{
  position: absolute;
  color: white;
  background-color: gray;
  font-family: Helvetica;
  font-weight: bold;
  font-size: 2vh;
  opacity: 0.5;
  z-index: 1;
  height:3vh;
  width: 3vw;
  top: 130vh;
  right: 4vw;
  border-radius: 10px;
}

.last-daive{
  height:18vh;
  max-width: 50vw;
  margin-left:0vw;
  margin-top:12vh;
}

.last-logo{
  position: relative;
  height: 8vh;
  margin-left:0vw;
}

.menu-left {
  position: absolute;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  font-size: clamp(2vh, 4vh, 6vh);
  top:14%;
  left:62%;
  letter-spacing: 2px;
}

.menu-right {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: clamp(2vh, 2.5vh, 3vh);
  margin-bottom: 15vh;
  margin-right: 10vw;
  transform: translateY(-10vh);
  gap:2vh;
  cursor: pointer;
}

.menu-right a:hover {
  opacity: 0.7;
}

.social-left {
  position: absolute;
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: flex-start;
  font-size: clamp(2vh, 4vh, 5vh);
  top:55%;
  left:62%;
  letter-spacing: 2px;
}

.social-right {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: clamp(2vh, 2.5vh, 3vh);
  margin-top: 1vh;
  margin-right: 10vw;
  gap:2vh;
  cursor: pointer;
  margin-bottom: 10vh;
}

.social-right a:hover {
  opacity: 0.7;
}

.footer-bar {
  position: relative;
  width: 90vw;
  font-family: Helvetica;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom:0;
  margin-bottom: 10vh;
  margin-left: 5vw;
  font-size: clamp(1vh, 2vh, 3vh);
  margin-top:7vh;
  letter-spacing: 0.5px;
}

.footer-bar p {
  margin: 0;
  font-weight: 300;
}


@media (max-width: 767px) {

  .last-section {
    max-width: 100vw;
    height: auto;
    padding-bottom: 10vh;
  }
 
  .last-section::before {
    display: none;
  }
 
  .last-section::after {
    display: none;
  }
 
  .last-daive {
    height: 10vh;
    max-width: 70vw;
    margin-left: 5vw;
    margin-top: 5vh;
  }
 
  .last-logo {
    height: 4vh;
    margin-left: 5vw;
    transform: translateY(1vh);
    margin-bottom: 5vh;
    animation: girar 8s linear infinite;
  }

  @keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
 
  .menu-left {
    position: static;
    align-items: flex-end;
    font-size: 3vh;
    margin-left: 5vw;
    margin-top: 3vh;
    letter-spacing: 1px;
  }
 
  .menu-right {
    position: static;
    align-items: flex-end;
    font-size: 2.2vh;
    margin-left: 5vw;
    margin-right: 3vw;
    margin-top: 2vh;
    margin-bottom: 5vh;
    transform: none;
    gap: 1.5vh;
  }
 
  .social-left {
    position: static;
    align-items: flex-end;
    font-size: 3vh;
    margin-left: 5vw;
    margin-top: 3vh;
    letter-spacing: 1px;
  }
 
  .social-right {
    position: static;
    align-items: flex-end;
    font-size: 2.2vh;
    margin-left: 5vw;
    margin-right: 3vw;
    margin-top: 2vh;
    margin-bottom: 5vh;
    gap: 1.5vh;
  }
 
  .last-section .languages {
    width: 12vw;
    height: 4vh;
    font-size: 2.5vw;
    top: 3vh;
    right: 5vw;
  }
 
  .footer-bar {
    position: relative;
    width: 90vw;
    font-family: Helvetica;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1vh;
    padding-bottom: 0;
    margin-bottom: 2.5vh;
    margin-left: 5vw;
    margin-top: 5vh;
    font-size: 1.6vh;
    letter-spacing: 0.5px;
  }

  .footer-bar img{
    margin-right: 4vw;
  }
 
  .footer-bar p {
    white-space: normal;
    font-size: 1.6vh;
  }
}