/* Tamarossi Decorações - Style */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #262626;
  background-color: #ffffff;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #13704d;
  text-decoration: none;
}

a:hover {
  color: #ed1c24;
}

.container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 10px;
  background: #16562c;
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 10px;
}

/* Typography & Titles */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
  color: #2d3142;
  margin-top: 0;
}

.section-title {
  font-size: 35px;
  color: #16562c;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 40px;
  letter-spacing: 0.5px;
}

.entry-title {
  font-size: 32px;
  color: #16562c;
  text-transform: uppercase;
  border-bottom: 2px solid #09ab5f;
  padding-bottom: 8px;
  margin: 0 0 35px;
  font-weight: 700;
}

/* Section Produtos */
.produtos-section {
  padding: 75px 0 60px;
  background-color: #ffffff;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.produto-card {
  text-align: center;
}

.produto-card h3,
.produto-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2d3142;
  margin: 0 0 12px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produto-img-wrap {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}

.produto-img-wrap img {
  width: 100%;
  height: 198px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.rollover {
  transition: all 0.4s ease;
  position: relative;
  display: block;
}

.rollover:hover {
  outline: 2px solid #ed1c24;
  outline-offset: -10px;
  filter: contrast(115%);
}

/* Section Quem Somos */
.quem-somos-section {
  padding: 60px 0 75px;
  background-color: #ffffff;
}

.quem-somos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.quem-somos-content h2 {
  font-size: 35px;
  color: #16562c;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.quem-somos-content p {
  color: #262626;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px;
}

.btn-saiba-mais {
  display: inline-block;
  background-color: #16562c;
  color: #ffffff;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-saiba-mais:hover {
  background-color: #0eac61;
  color: #ffffff;
  transform: translateY(-2px);
}

.quem-somos-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.quem-somos-image-wrap img {
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fotos {
  outline-offset: -12px;
  outline: 3px solid #16562c;
  border: 1px solid #ccc;
  transition: all 0.4s ease;
}

.fotos:hover {
  outline-offset: -20px;
  outline: 3px solid #ccc;
  border: 1px solid #f43237;
}

/* Inner Pages Layout */
.page-container {
  padding: 50px 0 80px;
}

.internal-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

/* Gallery Grid */
.gallery-section-title {
  font-size: 22px;
  color: #2d3142;
  margin: 30px 0 15px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e0e0e0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: #f9f9f9;
  border: 1px solid #eee;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Form Styles */
.form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fdfdfd;
  padding: 30px;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-input,
.form-textarea,
.form-file {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  color: #333;
  box-sizing: border-box;
  background-color: #fff;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #16562c;
  box-shadow: 0 0 0 3px rgba(22, 86, 44, 0.15);
}

.form-submit {
  background-color: #16562c;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background-color: #0eac61;
}

/* WhatsApp Float */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

.wa-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .quem-somos-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .internal-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .produtos-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title,
  .entry-title {
    font-size: 26px;
  }
}
