:root {
  --bg: #f5f5f5;
  --panel: #ffffff;
  --muted: #94a3b8;
  --card: #ffffff;
  --accent: #6c5ce7;
  --accent-600: #5a4fcf;
  --accent-700: #4a3fb8;
  --fg: #333333;
  --white: #ffffff;
  --border: #e2e8f0;
  --star-color: #ffc107;
  --header-bg: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.5;
}

.page-container {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}

/* Header Styles */
.header-image {
  width: 100%;
  overflow: hidden;
}

.header-img {
  width: 100%;
  display: block;
}

.site-header {
  background: url('Header.png') no-repeat center center;
  background-size: cover;
  color: var(--white);
  text-align: center;
  padding: 20px;
  position: relative;
  height: 200px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.logo-wrapper {
  position: absolute;
  top: 0px;
  left: 110px;
  z-index: 10;
  transition: transform 0.3s ease;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px;
  border-radius: 5px;
}

.logo-wrapper:hover {
  transform: scale(1.05);
}

.logo {
  width: 100px;
  height: auto;
  display: block;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0);
}



.logo-container {
  height: 90px;
  margin: 3 auto 1rem;
  background-color: var(--transparent);
  border-radius: 10px;
    padding: 5px;
}
.rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.star {
  color: var(--star-color);
  font-size: 1.2rem;
}

/* Navigation */
.main-nav {
  display: flex;
  justify-content: space-around;
  background-color: var(--white);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--fg);
  font-size: 0.9rem;
  padding: 0.5rem;
}

.nav-icon {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.nav-item.active {
  color: var(--accent);
  position: relative;
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
}

/* Content */
.content {
  padding: 1.5rem;
}

.review-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.review-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--white);
  border: 1px solid var(--star-color);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: var(--fg);
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.star-icon {
  color: var(--star-color);
  font-size: 1.2rem;
}

/* Reviews */
.reviews {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card {
  background-color: var(--card);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.5;
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: center;
  padding: 1.5rem;
  background-color: var(--white);
  border-top: 1px solid var(--border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c5ce7;
  font-size: 0.9rem;
  font-weight: 500;
}

.linkfacil-logo {
  width: 24px;
  height: 24px;
}

/* Share button */
.share-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Estilos para a página de contatos */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-logo {
  width: 100%;
  height: 100%;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.contact-info p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #666;
}

/* Estilos para a página de portfólio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 16px 0;
}

.portfolio-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Estilos para a página de catálogo */
.category-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  justify-content: center;
  overflow-x: auto;
}

.category-tab {
  background-color: #f0f0f0;
  color: var(--fg);
  padding: 0.4rem 0.6rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.category-tab.active {
  background-color: var(--accent);
  color: var(--white);
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-link {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

/* Estilos para a página de detalhes do produto */
.product-detail {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-detail-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.product-detail-icon {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.product-detail-image {
    margin-bottom: 20px;
}

.full-width-image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.product-detail-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-detail-pricing {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.product-detail-pricing h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.pricing-list li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.product-detail-highlight {
    background-color: #f0f7ff;
    border-left: 4px solid #3498db;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.whatsapp-button {
    display: block;
    background-color: #25D366;
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.product-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  margin-right: 16px;
  object-fit: cover;
}

.product-info {
  flex: 1;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

.product-icon {
  margin-right: 8px;
}

.product-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent);
  color: white;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 600px) {
  .page-container {
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
  }
  
  .site-header {
    border-radius: 0;
  }
}