* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Montserrat, sans-serif;
}
.blaster-nacif {
  font-family: Cinzel, serif;
  font-weight: 400;
  text-transform: uppercase;
}
body {
  min-height: 100vh;
  background: #f5f5f5;
}
section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
section.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero {
  position: relative;
  min-height: 100vh;
  background: url('assets/paula e nagil.jpg') center/cover;
  display: flex;
  align-items: flex-start;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 3vw;
  max-width: 40rem;
  margin: clamp(3rem, 8vh, 5rem) 0 0 clamp(.5rem, 2vw, 1rem);
}
.logo {
  flex-direction: column;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: .125rem;
}
.logo span {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  text-transform: none;
  letter-spacing: .0625rem;
}
.hero-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: clamp(.875rem, 2vw, 1.125rem);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.cta-button {
  padding: .9375rem 1.875rem;
  background: #d4a373;
  color: #fff;
  text-decoration: none;
  font: 600 clamp(.875rem, 1.5vw, 1rem) Montserrat;
  border-radius: .3125rem;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .2s;
}
.cta-button:hover {
  background: #b88a5c;
  transform: translateY(-.125rem);
}
.practice-area {
  padding: clamp(3rem, 8vw, 5rem) clamp(5%, 10vw, 10%);
  background: #f5f5f5;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.125rem);
  flex-wrap: wrap;
}
.practice-content {
  max-width: 37.5rem;
  flex: 1 1 50%;
}
.practice-content h2 {
  font: 700 clamp(1.75rem, 4vw, 2.25rem) 'Cinzel', serif;
  color: #0a1516;
  margin-bottom: 1.25rem;
}
.practice-content p {
  font-size: clamp(.875rem, 1.5vw, 1rem);
  color: #0a1516;
  line-height: 1.8;
}
.practice-logo {
  flex: 1 1 40%;
  text-align: center;
}
.practice-logo img {
  max-width: clamp(12.5rem, 30vw, 18.75rem);
  border-radius: .625rem;
  margin-bottom: .9375rem;
  object-fit: contain;
}
.practice-logo h3 {
  font: 700 clamp(1.25rem, 3vw, 1.75rem) 'Cinzel', serif;
  color: #0a1516;
}
.history-section {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) clamp(5%, 10vw, 10%);
  background: url('assets/paula e nagil.jpg') center/cover;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.history-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1;
}
.history-content {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.history-content h2 {
  font: 700 clamp(1.75rem, 4vw, 2.25rem) 'Cinzel', serif;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.history-content p {
  font-size: clamp(.875rem, 1.5vw, 1rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.history-mobile-button {
  display: none;
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: .9375rem 1.875rem;
  background: linear-gradient(to right, #d4a373, #b88a5c);
  color: #fff;
  font: 600 clamp(.875rem, 1.5vw, 1rem) 'Cinzel', serif;
  border-radius: .3125rem;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .2s;
  z-index: 2;
  text-transform: uppercase;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}
.history-mobile-button:hover {
  background: linear-gradient(to right, #b88a5c, #d4a373);
  transform: translate(-50%, -60%);
}
.history-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: clamp(1rem, 2vw, 1.5rem);
  pointer-events: none;
}
.history-mobile-overlay.active {
  display: flex;
}
.history-mobile-content {
  position: relative;
  width: 90vw;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.9);
  border-radius: .625rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: 0 .25rem 1rem rgba(0, 0, 0, .5);
  text-align: center;
  color: #fff;
  margin: 1.5rem auto;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 10000;
  pointer-events: auto;
}
.history-mobile-content h2 {
  font: 700 clamp(1.75rem, 4vw, 2.25rem) 'Cinzel', serif;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: #d4a373;
}
.history-mobile-content p {
  font-size: clamp(.875rem, 1.5vw, 1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.history-mobile-content a {
  color: #d4a373;
  text-decoration: none;
  font: 600 clamp(0.7rem, 1vw, 0.8rem) Montserrat;
  margin: 0.5rem;
  display: inline-block;
  transition: color 0.3s;
}
.history-mobile-content a:hover {
  color: #e8c08c;
}
.close-history {
  position: fixed;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background .3s;
}
.close-history:hover {
  background: rgba(255, 255, 255, 0.4);
}
.office-section {
  padding: clamp(3rem, 8vw, 5rem) clamp(5%, 10vw, 10%);
  background: #fff;
  text-align: center;
}
.office-line {
  height: 3px;
  background: linear-gradient(to right, #d4a373, #b88a5c);
  margin: 1.5rem 0;
}
.office-title {
  font: 700 clamp(2rem, 5vw, 3rem) 'Cinzel', serif;
  color: #0a1516;
  margin-bottom: .5rem;
  text-transform: uppercase;
}
.office-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: clamp(20rem, 50vw, 30rem);
  overflow: hidden;
  border-radius: .625rem;
  border: 1px solid rgba(212, 163, 115, 0.3);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}
.office-images {
  display: flex;
}
.office-images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease-in-out;
}
.office-images img.active {
  opacity: 1;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 3;
}
.carousel-controls button {
  background: rgba(0,0,0,.5);
  color: #fff;
  border: none;
  font-size: clamp(1.5rem, 3vw, 2rem);
  padding: .5rem 1rem;
  cursor: pointer;
  transition: background .3s;
}
.carousel-controls button:hover {
  background: rgba(0,0,0,.8);
}
.thumbnails {
  display: flex;
  justify-content: center;
  gap: clamp(.5rem, 1vw, 1rem);
  margin-top: 1rem;
  flex-wrap: wrap;
}
.thumbnail {
  width: clamp(4rem, 10vw, 6rem);
  height: clamp(2.5rem, 6vw, 3.5rem);
  object-fit: cover;
  border-radius: .25rem;
  cursor: pointer;
  transition: opacity .3s, transform .3s;
  border: 2px solid transparent;
}
.thumbnail:hover {
  opacity: .8;
  transform: scale(1.05);
}
.thumbnail.active {
  border-color: #d4a373;
  opacity: 1;
}
.professionals-section {
  padding: clamp(3rem, 8vw, 5rem) clamp(5%, 10vw, 10%);
  background: #fff;
  text-align: center;
  position: relative;
}
.professionals-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 80 C30 70, 40 60, 50 60 C60 60, 70 65, 80 70" stroke="#d4a373" stroke-width="2" fill="none"/><path d="M25 75 C35 65, 45 55, 55 55 C65 55, 75 60, 85 65" stroke="#d4a373" stroke-width="2" fill="none"/><path d="M30 85 C40 75, 50 65, 60 65 C70 65, 80 70, 90 75" stroke="#d4a373" stroke-width="2" fill="none"/><circle cx="50" cy="65" r="3" fill="#d4a373"/></svg>') no-repeat/contain;
  opacity: .7;
  z-index: 1;
}
.team-line {
  height: 4px;
  background: linear-gradient(to right, #d4a373, #b88a5c);
  margin: 1.5rem 0;
}
.professionals-section h2 {
  font: 700 clamp(1.75rem, 4vw, 2.25rem) 'Cinzel', serif;
  color: #0a1516;
  margin-bottom: 2rem;
}
.professionals-grid {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  flex-wrap: wrap;
}
.professional-card {
  max-width: clamp(15rem, 25vw, 18.75rem);
  text-align: center;
  cursor: pointer;
  transition: transform .3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem;
}
.professional-card:hover {
  transform: translateY(-.3125rem);
}
.professional-card .image-container {
  position: relative;
  width: clamp(10rem, 22vw, 17rem);
  height: clamp(10rem, 22vw, 17rem);
  margin-bottom: .9375rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px solid #d4a373;
  box-shadow: 0 0 15px rgba(212, 163, 115, 0.5);
  background: radial-gradient(circle, rgba(212, 163, 115, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
}
.professional-card img {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  object-fit: cover;
  border-radius: 26px;
  transition: filter .5s ease-in-out;
}
.professional-card:hover img {
  filter: brightness(40%);
}
.professional-card .overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(10rem, 22vw, 17rem);
  height: clamp(10rem, 22vw, 17rem);
  background: rgba(26,37,38,.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .5s ease-in-out;
  border-radius: 30px;
  z-index: 3;
  padding: 1rem;
}
.professional-card:hover .overlay {
  opacity: 1;
}
.professional-card .name {
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: .25rem;
  text-transform: uppercase;
}
.professional-card .specialty {
  color: #d4a373;
  font-size: clamp(.75rem, 1.5vw, .875rem);
  font-weight: 400;
  margin-bottom: .75rem;
  line-height: 1.4;
  text-align: center;
}
.professional-card .action-button {
  padding: .625rem 1.25rem;
  background: #d4a373;
  color: #fff;
  text-decoration: none;
  font: 600 clamp(.75rem, 1vw, .875rem) Montserrat;
  border-radius: .3125rem;
  border: 1px solid #b88a5c;
  transition: background .3s, transform .2s, color .3s;
  display: inline-block;
  text-align: center;
  width: auto;
}
.professional-card .action-button:hover {
  background: #b88a5c;
  color: #fff;
  transform: translateY(-.125rem);
}
.professional-card h3 {
  font: 600 clamp(1rem, 2vw, 1.25rem) 'Cinzel', serif;
  color: #0a1516;
  margin-bottom: .625rem;
}
.professional-card p {
  font-size: clamp(.75rem, 1.5vw, .875rem);
  color: #666;
}
.contact-header {
  background: #000;
  color: #d6b36d;
  padding: clamp(1rem, 3vw, 2rem) 1rem;
  text-align: center;
}
.contact-header h2 {
  font: 600 clamp(1.25rem, 2.5vw, 1.8rem) 'Segoe UI', sans-serif;
  letter-spacing: .0625rem;
}
.contact-header p {
  font: 400 clamp(.875rem, 1.5vw, 1rem) 'Segoe UI', sans-serif;
  margin: .5rem 0 1rem;
}
.contact-header .cta-button {
  background: #c7a75b;
  padding: clamp(.5rem, 1.5vw, .75rem) clamp(1rem, 2vw, 1.5rem);
  font-weight: bold;
}
.contact-header .whatsapp-button {
  background: #25D366;
  padding: clamp(.5rem, 1.5vw, .75rem) clamp(1rem, 2vw, 1.5rem);
  text-decoration: none;
  border-radius: .25rem;
  margin: .5rem 0 0 .5rem;
  display: inline-block;
  font: bold clamp(.75rem, 1.5vw, .875rem) 'Segoe UI', sans-serif;
}
.contact-header .whatsapp-button:hover {
  background: #1EBE57;
  transform: translateY(-.125rem);
}
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 3vw, 2rem);
  background: #fff;
  gap: clamp(2rem, 3vw, 1rem);
  font-family: 'Segoe UI', sans-serif;
  color: #0a1516;
}
.contact-left, .info-area {
  flex: 1;
  min-width: clamp(15rem, 40vw, 18.75rem);
}
.form-area {
  background: #fff;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: .625rem;
  box-shadow: 0 .375rem 1.5625rem rgba(0,0,0,.15);
}
.form-area h2 {
  font: 600 clamp(1rem, 2vw, 1.3rem) 'Segoe UI', sans-serif;
  color: #c7a75b;
  margin-bottom: 1rem;
}
form {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
form label {
  font-size: clamp(.75rem, 1.5vw, .85rem);
  color: #0a1516;
  margin-bottom: .25rem;
}
form input, form select {
  padding: .5rem;
  font-size: clamp(.75rem, 1.5vw, .85rem);
  border: 1px solid #ccc;
  border-radius: .25rem;
  width: 100%;
  transition: border-color .3s, box-shadow .3s;
}
form input:focus, form select:focus {
  border-color: #c7a75b;
  box-shadow: 0 0 .3125rem rgba(199,167,91,.3);
  outline: none;
}
.checkboxes {
  margin: .75rem 0;
}
.checkboxes label {
  font-size: clamp(.7rem, 1.2vw, .8rem);
  color: #0a1516;
  display: flex;
  align-items: center;
  gap: .5rem;
}
button[type="submit"] {
  background: #c7a75b;
  color: #fff;
  padding: .75rem;
  border: none;
  font: bold clamp(.8rem, 1.5vw, .9rem) 'Segoe UI', sans-serif;
  border-radius: .25rem;
  cursor: pointer;
  margin-top: .75rem;
  transition: background .3s, transform .2s;
}
button[type="submit"]:hover {
  background: #b6984c;
  transform: translateY(-.125rem);
}
.form-error {
  color: #d9534f;
  font-size: clamp(.7rem, 1.2vw, .8rem);
  margin-top: .25rem;
  display: none;
}
.form-success {
  color: #5cb85c;
  font-size: clamp(.75rem, 1.5vw, .85rem);
  margin-top: .75rem;
  display: none;
  text-align: center;
}
.info-area {
  text-align: center;
}
.info-area img {
  max-width: clamp(6rem, 15vw, 9.375rem);
  margin: 0 auto 1rem;
  object-fit: contain;
}
.info-area h3 {
  font: 700 clamp(1rem, 2vw, 1.25rem) 'Cinzel', serif;
  color: #0a1516;
  margin-bottom: .625rem;
}
.info-area p {
  font-size: clamp(.75rem, 1.5vw, .85rem);
  color: #0a1516;
  margin-bottom: .5rem;
}
.contact-info {
  font-size: clamp(.75rem, 1.5vw, .85rem);
  color: #0a1516;
  text-align: center;
}
.contact-info p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: .5rem 0;
}
.contact-info a {
  color: #0a1516;
  text-decoration: none;
  transition: color .3s;
}
.contact-info a:hover {
  color: #c7a75b;
}
.about-section {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) clamp(5%, 10vw, 10%);
  background: url('assets/entrada.jpg') center/cover;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1;
}
.about-content {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.about-section h2 {
  font: 700 clamp(1.75rem, 4vw, 2.25rem) 'Cinzel', serif;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.about-section p {
  font-size: clamp(.875rem, 1.5vw, 1rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.play-button {
  display: inline-flex;
  align-items: center;
  padding: .9375rem 1.875rem;
  background: #d4a373;
  color: #fff;
  font: 600 clamp(.875rem, 1.5vw, 1rem) Montserrat;
  border-radius: .3125rem;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .2s;
  margin-top: 1rem;
}
.play-button:hover {
  background: #b88a5c;
  transform: translateY(-.125rem);
}
.play-button i {
  margin-right: .5rem;
}
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.video-modal.active {
  display: flex;
}
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  max-height: 80vh;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: .625rem;
  box-shadow: 0 .25rem 1rem rgba(0, 0, 0, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: .625rem;
}
.close-video {
  position: absolute;
  top: -40px;
  right: 10px;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  border: none;
  font-size: clamp(1.5rem, 3vw, 2rem);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background .3s;
}
.close-video:hover {
  background: rgba(0, 0, 0, .9);
}
.purpose-section {
  padding: clamp(3rem, 8vw, 5rem) clamp(5%, 10vw, 10%);
  background: #fff;
  text-align: center;
  position: relative;
}
.purpose-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(212,163,115,0.05), rgba(255,255,255,0,4));
  z-index: 0;
  pointer-events: none;
}
.purpose-section h2 {
  font: 600 clamp(1.75rem, 4vw, 2.25rem) 'Cinzel', serif;
  color: #0a1516;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
}
.purpose-section h3 {
  font: 600 clamp(1.25rem, 3vw, 1.75rem) 'Cinzel', serif;
  color: #0a1516;
  margin: 1.5rem 0 .5rem;
  z-index: 1;

}
.purpose-section p {
  font-size: clamp(.875rem, 1.5vw, 1rem);
  color: #0a1516;
  line-height: 1.8;
  max-width: 50rem;
  margin: 0 auto 1rem;
  z-index: 1;
}
.purpose-section ul {
  list-style: none;
  max-width: 50rem;
  margin: 0 auto;
  text-align: left;
  z-index: 1;
}
.purpose-section ul li {
  font-size: clamp(.875rem, 1.5vw, 1rem);
  color: #0a1516;
  line-height: 1.8;
  margin-bottom: .5rem;
  padding-left: 1.5rem;
  position: relative;
  transition: transform .3s, color .3s;
}
.purpose-section ul li:hover {
  transform: translateX(10px);
  color: #d4a373;
}
.purpose-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #d4a373;
  font-size: 1.2rem;
}
.purpose-section .purpose-highlight {
  padding: .5rem 1rem;
  background: #d4a373;
  color: #fff;
  border-radius: .3125rem;
  margin: 1rem auto;
  font: 600 clamp(.875rem, 1.5vw, 1rem) Montserrat;
  z-index: 1;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,163,115,.7); }
  50% { transform: scale(1.05); box-shadow: 0 0 10px 5px rgba(212,163,115,.3); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,163,115,.7); }
}
.location-section {
  padding: clamp(2rem, 5vw, 3rem) clamp(5%, 10vw, 10%);
  background: #fff;
  text-align: center;
}
.location-section h2 {
  font: 700 clamp(1.75rem, 4vw, 2.25rem) 'Cinzel', serif;
  color: #0a1516;
  margin-bottom: 1rem;
}
.location-section p {
  font-size: clamp(.875rem, 1.5vw, 1rem);
  color: #0a1516;
  margin-bottom: 1.5rem;
}
.location-section iframe {
  width: 100%;
  max-width: 800px;
  height: 400px;
  border: 0;
  border-radius: .625rem;
  box-shadow: 0 .25rem 1rem rgba(0,0,0,.1);
}
footer {
  padding: clamp(2rem, 5vw, 3.125rem);
  background: #0a1516;
  color: #fff;
  text-align: center;
}
footer p {
  font-size: clamp(.75rem, 1.5vw, .875rem);
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.redes-sociais {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 1.875rem);
}
.redes-sociais a {
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.2rem);
  transition: color .3s;
}
.redes-sociais a:hover {
  color: #d4a373;
}
.menu-container {
  position: absolute;
  top: clamp(1rem, 2vw, 1.875rem);
  right: clamp(1rem, 5vw, 3.125rem);
  z-index: 1000;
}
.menu-icon {
  display: none;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #fff;
  cursor: pointer;
  transition: transform .3s;
}
.menu-icon.active {
  transform: rotate(90deg);
}
.menu-links {
  display: flex;
  gap: clamp(1rem, 3vw, 1.875rem);
}
.menu-links a {
  color: #fff;
  text-decoration: none;
  font: 500 clamp(.875rem, 1.5vw, 1rem) Montserrat;
  transition: color .3s;
}
.menu-links a:hover {
  color: #d4a373;
}
.whatsapp-float {
  position: fixed;
  bottom: clamp(1rem, 3vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
  z-index: 1000;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3rem, 8vw, 4rem);
  height: clamp(3rem, 8vw, 4rem);
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: clamp(1.5rem, 4vw, 2rem);
  box-shadow: 0 .25rem .5rem rgba(0,0,0,.2);
  transition: transform .3s, background .3s;
}
.whatsapp-float a:hover {
  background: #1EBE57;
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  .menu-container {
    position: fixed;
    top: 0;
    right: 0;
    background: transparent;
    padding: 0.5rem 1rem;
    width: auto;
    z-index: 1000;
  }
  .menu-icon {
    display: block;
  }
  .menu-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: clamp(3rem, 8vh, 3.75rem);
    right: clamp(1rem, 3vw, 1.875rem);
    background: rgba(0, 0, 0, 0.8);
    padding: 1.25rem;
    border-radius: .3125rem;
    box-shadow: none;
  }
  .menu-links.active {
    display: flex;
  }
  .history-content {
    display: none;
  }
  .history-mobile-button {
    display: block;
  }
  .history-mobile-overlay {
    padding: clamp(0.5rem, 1.5vw, 1rem) 0;
  }
}
@media (max-width: 768px) {
  .menu-icon {
    display: block;
    font-size: clamp(1rem, 2vw, 1.2rem);
  }
  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  .hero-content {
    padding: clamp(1rem, 3vw, 1.5rem);
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 80vh;
    max-width: 90%;
  }
  .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
  }
  .logo span {
    display: block;
    font-size: clamp(0.875rem, 2vw, 1rem);
    margin-top: 0.5rem;
  }
  .hero-content h2 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
  }
  .hero-content p {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    margin-bottom: 1rem;
  }
  .hero-content .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  }
}
@media (max-width: 480px) {
  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  .hero-content {
    padding: clamp(0.75rem, 2vw, 1rem);
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 85vh;
    max-width: 95%;
    margin-bottom: 2rem;
  }
  .logo {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    margin-bottom: 0.75rem;
  }
  .logo span {
    font-size: clamp(0.75rem, 1.8vw, 0.875rem);
    margin-top: 0.3rem;
  }
  .hero-content h2 {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 0.75rem;
  }
  .hero-content p {
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  .hero-content .cta-button {
    padding: 0.625rem 1.25rem;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  }
  .office-carousel {
    height: clamp(15rem, 40vw, 20rem);
    border: 1px solid rgba(212, 163, 115, 0.5);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  }
  .office-images img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  .carousel-controls button {
    font-size: clamp(1rem, 2vw, 1.2rem);
    padding: 0.25rem 0.5rem;
    background: rgba(0, 0, 0, 0.4);
  }
  .carousel-controls button:hover {
    background: rgba(0, 0, 0, 0.7);
  }
  .thumbnail {
    width: clamp(3rem, 8vw, 4rem);
    height: clamp(2rem, 5vw, 2.5rem);
    border-radius: .2rem;
  }
}