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

body {
  font-family: 'GlacialIndifference', sans-serif;
  background-color: white;
  color: #2e2e2e;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'TimesNewRomanCondensed', serif;
}

/* Header */
.header {
  background-color: #F3F1EC;
  padding: 20px 40px;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
}

.logo {
  height: 48px;
  margin-right: 100px;
}

.navbar ul {
  display: flex;
  gap: 90px;
  list-style: none;
}

.navbar a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #a2183b;
}

/* Hero Section */
.hero {
  position: relative;
  color: white;
  padding: 120px 60px;
  min-height: 80vh;
  background-image: url("../assets/images/damaso1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 60px;
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  white-space: nowrap;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #a2183b;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #7d122f;
}

/* Especialidades */
.specialties {
  padding: 80px 100px;
  background-color: #a2183b;
  color: white;
}

.specialties h2 {
  text-align: center;
  font-family: 'TimesNewRomanCondensed', serif;
  font-size: 2.2rem;
  margin-bottom: 60px;
  position: relative;
}

.specialties h2::before,
.specialties h2::after {
  content: '';
  display: inline-block;
  width: 130px;
  height: 1px;
  background-color: white;
  margin: 0 20px;
  vertical-align: middle;
}

/* Specialty Block */
.specialty-block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
  padding: 0 40px;
}

.specialty-block.reverse {
  flex-direction: row-reverse;
}

.specialty-block img {
  width: 320px;
  height: 320px;
  background-color: #ddd;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.specialty-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.specialty-text h3 {
  font-family: 'TimesNewRomanCondensed', serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.specialty-text p {
  font-family: 'GlacialIndifference', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 500px;
}

/* Sobre Nós */
.about {
  padding: 80px 100px;
  color: #111;
}

.about h2 {
  text-align: center;
  font-family: 'TimesNewRomanCondensed', serif;
  font-size: 2.2rem;
  margin-bottom: 60px;
  position: relative;
}

.about h2::before,
.about h2::after {
  content: '';
  display: inline-block;
  width: 130px;
  height: 1px;
  background-color: #a2183b;
  margin: 0 20px;
  vertical-align: middle;
}

.about-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 130px;
  padding: 0 20px;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

.about-block img {
  width: 420px;
  height: 420px;
  object-fit: cover;
  background-color: #ccc;
  border-radius: 6px;
  flex-shrink: 0;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-family: 'TimesNewRomanCondensed', serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.about-text p {
  font-family: 'GlacialIndifference', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 500px;
}

/* Contact Section */
.contact {
  background-color: white;
  padding: 0px 180px;
  padding-bottom: 80px;
  color: #111;
}

.contact h2 {
  text-align: center;
  font-family: 'TimesNewRomanCondensed', serif;
  font-size: 2.2rem;
  margin-bottom: 60px;
  position: relative;
}

.contact h2::before,
.contact h2::after {
  content: '';
  display: inline-block;
  width: 130px;
  height: 1px;
  background-color: #a2183b;
  margin: 0 20px;
  vertical-align: middle;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.contact-info {
  flex: 1;
  font-size: 1rem;
  line-height: 2;
  padding-top: 75px;
}

.contact-info .label {
  font-weight: 600;
}

.contact-info .bold {
  color: #b8aa8c;
}

.contact-info .highlight {
  color: #a2183b;
}

.contact-map {
  flex: 1;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 6px;
  background-color: #ccc;
}

/* Footer */
.footer {
  background-color: #a2183b;
  color: white;
  padding: 40px 60px;
  font-size: 0.85rem;
  font-weight: 400;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  flex: 1;
  text-align: center;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 12px;
}

.footer-logo p {
  font-family: 'GlacialIndifference', sans-serif;
  font-size: 0.8rem;
  color: #f3f1ec;
  line-height: 1.4;
  margin-top: 8px;
}

.footer-contact,
.footer-hours {
  flex: 1;
  padding-left: 30px;
}

.footer-contact h4,
.footer-hours h4 {
  font-family: 'TimesNewRomanCondensed', serif;
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.footer-contact p,
.footer-hours p {
  font-family: 'GlacialIndifference', sans-serif;
  margin: 4px 0;
}

.footer-contact span,
.footer-hours span {
  font-weight: 600;
}

.footer-bottom {
  background-color: #f3f1ec;
  text-align: center;
  color: #a2183b;
  padding: 16px 0;
  font-size: 0.85rem;
  font-weight: 400;
}


/* Responsive (Mobile Only) */
@media (max-width: 768px) {
  .nav-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 10px 20px;
    align-items: flex-start;
  }

  .logo {
    margin-right: 0;
  }

  .navbar ul {
    flex-direction: column;
    gap: 16px;
    padding-left: 0;
  }

  .hero {
    padding: 60px 20px;
    min-height: 70vh;
    justify-content: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
    white-space: normal;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-content {
    padding: 0;
    max-width: 100%;
  }

  .specialties {
    padding: 60px 20px;
  }

  .specialty-block,
  .specialty-block.reverse {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 0;
  }

  .specialty-block img {
    margin: 0 auto 20px;
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .specialty-text p {
    max-width: 100%;
  }

  .about {
    padding: 60px 20px;
  }

  .about-block,
  .about-block.reverse {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about-block img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 20px;
  }

  .about-text p {
    max-width: 100%;
  }

  .about h2::before,
  .about h2::after,
  .contact h2::before,
  .contact h2::after,
  .specialties h2::after,
  .specialties h2::before {
    display: none;
  }

  .contact {
    padding: 0 20px 60px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: center; /* ✅ center all inner content */
    text-align: center;
  }


  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 20px;
  }

  .contact-map {
    width: 100%;
    max-width: 500px; /* ✅ prevent full stretch */
  }

  .footer {
    padding: 30px 20px;
  }

  .footer-columns {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding-bottom: 30px;
  }

  .footer-contact,
  .footer-hours {
    padding-left: 0;
  }

  .footer-logo img {
    width: 100px;
  }
}


/* Custom Fonts */
@font-face {
  font-family: 'TimesNewRomanCondensed';
  src: url('../assets/fonts/TimesNewMT.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GlacialIndifference';
  src: url('../assets/fonts/GlacialIndifference-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

