* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #94381A;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  min-width: 320px;
  margin: 0 auto;
  max-height: 900px;
}

/* DESKTOP - SEM SCROLL */
@media (min-width: 769px) {
  body {
    height: 100vh;
    overflow: hidden;
  }
  
  .container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: clamp(20px, 3vh, 40px) clamp(30px, 5vw, 60px);
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: clamp(60px, 12vh, 90px);
    flex-shrink: 0;
  }

  .main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: clamp(12px, 2.5vh, 25px);
    max-width: 700px;
    margin: 0 auto;
    min-height: 0;
  }

  .realization-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: clamp(50px, 10vh, 80px);
    flex-shrink: 0;
  }

  .footer {
    height: clamp(40px, 8vh, 60px);
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
}

/* MOBILE - COM SCROLL E TAMANHOS ADEQUADOS */
@media (max-width: 768px) {
  body {
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  .container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 25px 20px;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    min-height: 60px;
  }

  .main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 25px;
    max-width: 100%;
    margin: 0 auto 30px;
  }

  .realization-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
  }
  
  .contact-whatsapp {
    align-self: flex-end;
  }

  .footer {
    margin-top: auto;
    padding-top: 15px;
  }
}

.logo {
  display: flex;
  align-items: flex-end;
  gap: clamp(8px, 1.5vw, 12px);
}

.logo-icon {
  width: clamp(45px, 8vw, 65px);
  height: clamp(45px, 8vw, 65px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-bottom: 3px;
}

.logo-title,
.logo-subtitle {
  font-family: 'Inter', sans-serif;
  letter-spacing: 1.2px;
  line-height: 1;
}

@media (min-width: 769px) {
  .logo-title,
  .logo-subtitle {
    font-size: clamp(7px, 1.2vh, 10px);
  }
}

@media (max-width: 768px) {
  .logo-title,
  .logo-subtitle {
    font-size: 9px;
  }
}

.logo-title {
  font-weight: 400;
}

.logo-subtitle {
  font-weight: 300;
  opacity: 0.9;
}

.address {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 0.3px;
  opacity: 0.9;
}

@media (min-width: 769px) {
  .address {
    font-size: clamp(9px, 1.5vh, 12px);
  }
}

@media (max-width: 768px) {
  .address {
    font-size: 11px;
  }
}

.main-title {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  opacity: 0.85;
  max-width: 600px;
}

@media (min-width: 769px) {
  .main-title {
    font-size: clamp(14px, 2.2vh, 20px);
    letter-spacing: clamp(1px, 0.3vh, 2px);
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 18px;
    letter-spacing: 1.5px;
  }
}

.property-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .property-info {
    height: clamp(40px, 8vh, 70px);
  }
}

@media (max-width: 768px) {
  .property-info {
    height: 60px;
  }
}

.property-info::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  width: 1px;
  height: 80%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.info-item.large {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  text-align: right;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (min-width: 769px) {
  .info-item.large {
    font-size: clamp(16px, 3vh, 24px);
    padding-right: clamp(12px, 2.5vh, 20px);
  }
}

@media (max-width: 768px) {
  .info-item.large {
    font-size: 22px;
    padding-right: 15px;
  }
}

.info-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  z-index: 2;
  position: relative;
  justify-content: center;
}

@media (min-width: 769px) {
  .info-group {
    gap: clamp(1px, 0.5vh, 3px);
    padding-left: clamp(12px, 2.5vh, 20px);
  }
}

@media (max-width: 768px) {
  .info-group {
    gap: 2px;
    padding-left: 15px;
  }
}

.info-item {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  opacity: 0.9;
}

@media (min-width: 769px) {
  .info-item {
    font-size: clamp(12px, 1.8vh, 16px);
  }
}

@media (max-width: 768px) {
  .info-item {
    font-size: 15px;
  }
}

.cta-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  opacity: 0.9;
}

@media (min-width: 769px) {
  .cta-text {
    font-size: clamp(10px, 1.5vh, 14px);
    margin: clamp(8px, 1.5vh, 15px) 0 clamp(5px, 1vh, 10px);
  }
}

@media (max-width: 768px) {
  .cta-text {
    font-size: 13px;
    margin: 15px 0 10px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
}

@media (min-width: 769px) {
  .contact-form {
    gap: clamp(8px, 1.5vh, 15px);
  }
}

@media (max-width: 768px) {
  .contact-form {
    gap: 12px;
  }
}

.form-row {
  display: flex;
  width: 100%;
}

@media (min-width: 769px) {
  .form-row {
    gap: clamp(10px, 2vh, 18px);
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 12px;
  }
}

.form-field {
  position: relative;
  flex: 1;
}

.form-row input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 0;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

@media (min-width: 769px) {
  .form-row input {
    padding: clamp(8px, 1.5vh, 14px) clamp(12px, 2vh, 18px);
    height: clamp(35px, 5vh, 50px);
    font-size: clamp(10px, 1.4vh, 14px);
    text-align: right;
  }
  
  .form-row input::placeholder {
    text-align: right;
    font-size: clamp(10px, 1.4vh, 14px);
  }
}

@media (max-width: 768px) {
  .form-row input {
    padding: 12px 15px;
    height: 45px;
    font-size: 14px;
    text-align: left;
  }
  
  .form-row input::placeholder {
    text-align: left;
    font-size: 14px;
  }
}

.form-row input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Inter', sans-serif;
  text-transform: lowercase;
}

.form-row input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.submit-btn {
  background: transparent;
  border: none;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-transform: lowercase;
  opacity: 0.9;
  width: 100%;
}

@media (min-width: 769px) {
  .submit-btn {
    padding: clamp(6px, 1.2vh, 12px) 0;
    font-size: clamp(10px, 1.4vh, 14px);
    text-align: right;
  }
}

@media (max-width: 768px) {
  .submit-btn {
    padding: 10px 0;
    font-size: 14px;
    text-align: left;
  }
}

.submit-btn:hover {
  opacity: 0.7;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.realization {
  display: flex;
  flex-direction: column;
}

@media (min-width: 769px) {
  .realization {
    gap: clamp(4px, 1vh, 8px);
  }
}

@media (max-width: 768px) {
  .realization {
    gap: 8px;
  }
}

.realization-label {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.8;
}

@media (min-width: 769px) {
  .realization-label {
    font-size: clamp(6px, 0.8vh, 8px);
  }
}

@media (max-width: 768px) {
  .realization-label {
    font-size: 8px;
  }
}

.partners {
  display: flex;
  align-items: center;
}

@media (min-width: 769px) {
  .partners {
    gap: clamp(12px, 2.5vh, 20px);
  }
}

@media (max-width: 768px) {
  .partners {
    gap: 15px;
  }
}

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

@media (min-width: 769px) {
  .partner {
    height: clamp(24px, 4vh, 35px);
  }
  
  .partner img {
    height: clamp(24px, 4vh, 35px);
    width: auto;
    object-fit: contain;
  }
  
  .partner.gbm img{
    height: clamp(35px, 6vh, 50px);
    margin: 0px 5px clamp(8px, 2vh, 15px) 8px;
  }
}

@media (max-width: 768px) {
  .partner {
    height: 30px;
  }
  
  .partner img {
    height: 30px;
    width: auto;
    object-fit: contain;
  }
  
  .partner.gbm img{
    height: 45px;
    margin: 0px 5px 12px 8px;
  }
}

.contact-whatsapp {
  display: flex;
  align-items: baseline;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  opacity: 0.9;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 769px) {
  .contact-whatsapp {
    gap: clamp(5px, 1vh, 8px);
    font-size: clamp(8px, 1.2vh, 11px);
  }
  
  .contact-whatsapp svg {
    margin-top: -2px;
    width: clamp(14px, 2vh, 20px);
    height: clamp(14px, 2vh, 20px);
  }
}

@media (max-width: 768px) {
  .contact-whatsapp {
    gap: 8px;
    font-size: 11px;
  }
  
  .contact-whatsapp svg {
    margin-top: -2px;
    width: 20px;
    height: 20px;
  }
}

.contact-whatsapp:hover {
  opacity: 0.7;
}

.footer-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.3;
  opacity: 0.7;
  text-align: left;
  max-width: 100%;
  letter-spacing: 0.1px;
}

@media (min-width: 769px) {
  .footer-text {
    font-size: clamp(5px, 0.7vh, 7px);
  }
}

@media (max-width: 768px) {
  .footer-text {
    font-size: 7px;
  }
}

.footer-text strong {
  font-weight: 400;
  opacity: 0.85;
}

.form-field.w-error input {
  border-color: #ff4444 !important;
  background-color: rgba(255, 68, 68, 0.1);
}

.error {
  color: #ff4444;
  margin-top: 2px;
  display: block;
  font-weight: 400;
}

@media (min-width: 769px) {
  .error {
    font-size: clamp(8px, 1vh, 10px);
  }
}

@media (max-width: 768px) {
  .error {
    font-size: 10px;
  }
}

.contact__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.contact__modal-wrapper {
  background-color: #94381A;
  border: 2px solid white;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

@media (min-width: 769px) {
  .contact__modal-wrapper {
    padding: clamp(20px, 4vh, 35px);
    max-width: clamp(280px, 50vw, 380px);
  }
}

@media (max-width: 768px) {
  .contact__modal-wrapper {
    padding: 30px;
    max-width: 350px;
    margin: 0 20px;
  }
}

.contact__modal-body {
  color: white;
  line-height: 1.4;
}

@media (min-width: 769px) {
  .contact__modal-body {
    margin-bottom: clamp(12px, 2vh, 18px);
    font-size: clamp(11px, 1.5vh, 15px);
  }
}

@media (max-width: 768px) {
  .contact__modal-body {
    margin-bottom: 18px;
    font-size: 14px;
  }
}

.contact__modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 769px) {
  .contact__modal-close {
    font-size: clamp(16px, 2.5vh, 22px);
  }
}

@media (max-width: 768px) {
  .contact__modal-close {
    font-size: 20px;
  }
}

.contact__modal-close:before {
  content: "×";
}

.contact__modal-dot {
  background-color: white;
  border-radius: 50%;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .contact__modal-dot {
    width: clamp(6px, 1vh, 9px);
    height: clamp(6px, 1vh, 9px);
    margin-top: clamp(12px, 2vh, 18px);
  }
}

@media (max-width: 768px) {
  .contact__modal-dot {
    width: 8px;
    height: 8px;
    margin-top: 18px;
  }
}