/* Main Styles */
:root {
  --beige: #f5ece7;
  --pink: #e39f9f;
  --pink-light: #f3c7c2;
  --coral: #e8837e;
  --blue: #70a0af;
  --blue-light: #a8c7d0;
  --teal: #2a6877;
  --cream: #efe2d9;
  --dark-text: #333333;
  --light-text: #666666;
  --white: #ffffff;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  background-color: var(--beige);
  color: var(--dark-text);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

p {
  line-height: 1.5;
}

button {
  transition: var(--transition);
}

button:hover {
  opacity: 0.9;
}

.logo h1 {
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
}

/* Page Navigation Styles */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* About Page Styles */
.about-section {
  padding: 48px 0;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  color: var(--dark-text);
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--light-text);
  line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
  padding: 48px 0;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  color: var(--dark-text);
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: var(--light-text);
}

.contact-info {
  background-color: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--box-shadow);
}

.contact-info p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--dark-text);
}

.contact-info p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-section,
  .contact-section {
    padding: 32px 0;
  }

  .about-section h2,
  .contact-section h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .about-content p,
  .contact-content p {
    font-size: 1rem;
  }

  .contact-info {
    padding: 24px;
  }
}

/* Pronta Entrega Section */
.pronta-entrega-section {
  margin-bottom: 48px;
}

.pronta-entrega-section h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--dark-text);
  text-align: center;
}

.pronta-entrega-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}


.pronta-entrega-card {
  width: 100%;
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.pronta-entrega-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.pronta-entrega-card .product-image {
  height: 120px;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pronta-entrega-card .product-image.blue {
  background-color: var(--blue);
}

.pronta-entrega-card .product-image.pink-light {
  background-color: var(--pink-light);
}

.pronta-entrega-card .product-image.teal {
  background-color: var(--teal);
}

.pronta-entrega-card .product-image.coral {
  background-color: var(--coral);
}

.pronta-entrega-card .product-image.cream {
  background-color: var(--cream);
}

.pronta-entrega-card .favorite-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.pronta-entrega-card .favorite-btn:hover {
  background-color: var(--pink);
}

.pronta-entrega-card .favorite-btn svg {
  width: 14px;
  height: 14px;
}

.pronta-entrega-card .product-info {
  padding: 10px;
  text-align: center;
}

.pronta-entrega-card .product-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 4px;
  line-height: 1.2;
}

.pronta-entrega-card .product-code {
  font-size: 0.75rem;
  color: var(--light-text);
  margin-bottom: 8px;
}

.pronta-entrega-card .product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
}

.pronta-entrega-card .product-price::before {
  content: 'R$ ';
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .pronta-entrega-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .pronta-entrega-card {
    width: 100%;
  }
  
  .pronta-entrega-card .product-image {
    height: 100px;
  }
  
  .pronta-entrega-card .product-info {
    padding: 8px;
  }
  
  .pronta-entrega-card .product-name {
    font-size: 0.8rem;
  }
  
  .pronta-entrega-card .product-code {
    font-size: 0.7rem;
  }
  
  .pronta-entrega-card .product-price {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .pronta-entrega-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .pronta-entrega-card {
    width: 100%;
  }
  
  .pronta-entrega-card .product-image {
    height: 80px;
  }
  
  .pronta-entrega-card .product-info {
    padding: 6px;
  }
  
  .pronta-entrega-card .product-name {
    font-size: 0.75rem;
  }
  
  .pronta-entrega-card .product-code {
    font-size: 0.65rem;
  }
  
  .pronta-entrega-card .product-price {
    font-size: 0.8rem;
  }
}

/* Comunicado Page Styles */
.comunicado-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.comunicado-header {
  text-align: center;
  margin-bottom: 40px;
}

.comunicado-header h1 {
  font-size: 2.2rem;
  color: var(--teal);
  margin-bottom: 20px;
  line-height: 1.3;
}

.comunicado-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-section {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--box-shadow);
}

.info-section h2 {
  font-size: 1.6rem;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.expert-name {
  font-style: italic;
  color: var(--light-text);
  margin-bottom: 20px;
  font-size: 1rem;
}

.size-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.size-table th,
.size-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--beige);
}

.size-table th {
  background-color: var(--cream);
  font-weight: 600;
  color: var(--dark-text);
}

.size-table td strong {
  color: var(--teal);
  font-weight: 600;
}

.gancho-types {
  display: grid;
  gap: 24px;
  margin-top: 20px;
}

.gancho-type {
  border: 2px solid var(--blue-light);
  border-radius: 12px;
  padding: 20px;
}

.gancho-type h3 {
  color: var(--teal);
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros h4,
.cons h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.pros h4 {
  color: var(--teal);
}

.cons h4 {
  color: var(--coral);
}

.pros ul,
.cons ul {
  list-style: none;
  padding: 0;
}

.pros li,
.cons li {
  margin-bottom: 6px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.gancho-note {
  margin-top: 20px;
  padding: 16px;
  background-color: var(--cream);
  border-radius: 8px;
  border-left: 4px solid var(--teal);
}

.gancho-note p {
  margin: 0;
  font-weight: 500;
  color: var(--dark-text);
}

.order-steps ol {
  padding-left: 20px;
}

.order-steps li {
  margin-bottom: 12px;
  line-height: 1.5;
  color: var(--dark-text);
}

.policy-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-item {
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid var(--blue-light);
}

.policy-item h4 {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 1rem;
}

.policy-item p {
  margin: 0;
  line-height: 1.4;
}

.atendimento-section {
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
}

.atendimento-section h2 {
  margin-bottom: 16px;
}

.atendimento-section p {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.whatsapp-contact {
  margin-top: 24px;
}

.whatsapp-btn-comunicado {
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.whatsapp-btn-comunicado:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
  .comunicado-container {
    padding: 20px 16px;
  }

  .comunicado-header h1 {
    font-size: 1.8rem;
  }

  .info-section {
    padding: 20px;
  }

  .info-section h2 {
    font-size: 1.4rem;
  }

  .pros-cons {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .size-table th,
  .size-table td {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .gancho-type {
    padding: 16px;
  }

  .comunicado-content {
    gap: 24px;
  }
}