@font-face {
  font-family: "Kingred";
  src: url("fonts/kingred.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: #efe6d6;
  position: relative;
  overflow-x: hidden;
  padding: 24px;
}

/* FAIXA DIAGONAL */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 140vw;
  height: 320px;
  background-color: #d1a745;
  transform: translate(-50%, -50%) rotate(-6deg);
  z-index: -1;
}


/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
@media (max-width: 712px) {
.header {
    flex-direction: column;
}
}

/* CONTENT */
.content {
  max-width: 1400px;
  width: 100%;
  text-align: center;
}

/* LOGO */
.header {
  display: flex;
  align-items: center;        /* alinha verticalmente */
  justify-content: center;    /* centraliza o conjunto */
  gap: 1.5rem;                /* espaço entre logo e texto */
  margin-bottom: 2rem;
}

/* LOGO */
.logo img {
  width: 180px;
  height: 180px;
}

/* TEXTO */
.header p {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 0;
    font-family: "Kingred", Georgia, serif;
    font-weight: 100;
    letter-spacing: .05em;
}

/* TITLE */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
}

/* IMAGE + ZOOM */
.image-wrapper {
  overflow: hidden;
  margin: 0 auto 2rem;
}

.image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}



.cta-uber p {
  margin: 0;
  font-family: "Kingred", Georgia, serif;
  font-weight: 100;
  letter-spacing: .05em;

  display: inline-flex;      
  align-items: center;       
  flex-wrap: wrap;           
  font-size: clamp(14px, 1.4em + 0.5vw, 20px);
}

.cta-uber-img {
  height: 26px;     /* altura fixa para desktop */
  width: auto;      
  margin-left: 0.3em;
  flex-shrink: 0;
}

/* MEDIA QUERY: telas até 762px */
@media (max-width: 762px) {
  .cta-uber p {
    display: flex;
    flex-direction: column; /* texto em cima, imagem embaixo */
    align-items: center;    
    text-align: center;     
  }

  .cta-uber-img {
    margin-left: 0;         
    padding-top: 24px;      
    height: 68px;           /* mantém altura */
    max-width: 100%;        /* não ultrapassa o container */
  }
}



/* FOOTER */
.footer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    font-family: "Kingred", Georgia, serif;
    font-size: 1.4em;
    font-weight: 100;
    letter-spacing: .05em;
    line-height: 2em;
    margin-top: 40px;
}
.phone-icon {
    vertical-align: middle;
    width: 30px;
    height: 30px;
    margin-right: 4px;
    margin-left: 20px;
}
.footer a {
  color: #272727;
  text-decoration: none;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* MOBILE */
@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    gap: 0.5rem;
  }
}
