* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: #f4e4bc;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.header-quem-somos,
.header-produtos,
.header-contato,
.header-cadastro,
.header-pedidos {
  background: #f4e4bc;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px;
  width: auto;
}

.search-bar input {
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 25px;
  width: 300px;
  font-size: 14px;
  background: #f8f8f8;
}

.search-bar input:focus {
  outline: none;
  border-color: #d4af37;
  background: #fff;
}

.main-nav {
  background: #d4af37;
  padding: 15px 0;
}

.nav-quem-somos,
.nav-produtos,
.nav-contato,
.nav-cadastro,
.nav-pedidos {
  background: #d4af37;
}

.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 40px;
}

.nav-list a {
  color: #8b6914;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-quem-somos .nav-list a,
.nav-produtos .nav-list a,
.nav-contato .nav-list a,
.nav-cadastro .nav-list a,
.nav-pedidos .nav-list a {
  color: #8b6914;
}

.nav-list a:hover,
.nav-list a.active {
  color: #fff;
}

.hero {
  background: linear-gradient(135deg, #f4e4bc 0%, #d4af37 50%, #8b6914 100%);
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  position: relative;
  z-index: 2;
  min-height: 60vh;
}

.anniversary-section {
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.anniversary-banner {
  max-width: 1500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  object-fit: contain;
}

.main-content-quem-somos {
  min-height: 80vh;
}

.hero-quem-somos {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.text-box {
  background: #000;
  color: #fff;
  padding: 20px;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.text-box h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.text-box p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #fff;
  text-align: justify;
}

.text-box p:last-child {
  margin-bottom: 0;
}

.main-content-produtos {
  min-height: 80vh;
  background: linear-gradient(135deg, #f4e4bc 0%, #d4af37 50%, #8b6914 100%);
  padding: 60px 0;
}

.products-section {
  width: 100%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.product-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.product-card:hover {
  border-color: #8b6914;
}

.product-black {
  border: 4px solid #000;
}

.product-blue {
  border: 4px solid #0066cc;
}

.product-pink {
  border: 4px solid #ff69b4;
}

.product-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-side-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  font-weight: 600;
  color: #ccc;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-side-text.left {
  left: -15px;
}

.product-side-text.right {
  right: -15px;
}

.main-content-contato {
  min-height: 80vh;
  background: linear-gradient(135deg, #f4e4bc 0%, #d4af37 50%, #8b6914 100%);
  padding: 80px 0;
}

.contact-section {
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-column {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contact-item {
  text-align: center;
}

.contact-title {
  font-size: 24px;
  font-weight: 600;
  color: #8b6914;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-title-underline {
  text-decoration: underline;
  text-decoration-color: #8b6914;
  text-decoration-thickness: 2px;
}

.contact-info {
  font-size: 18px;
  color: #514210;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.main-content-cadastro {
  min-height: 80vh;
  background: linear-gradient(135deg, #f4e4bc 0%, #d4af37 50%, #8b6914 100%);
  padding: 80px 0;
}

.registration-section {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.registration-header {
  text-align: center;
  margin-bottom: 50px;
}

.registration-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #8b6914;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.registration-header p {
  font-size: 18px;
  color: #514210;
  font-weight: 400;
}

.registration-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-size: 16px;
  font-weight: 600;
  color: #8b6914;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input {
  padding: 15px 20px;
  border: 2px solid rgba(139, 105, 20, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #514210;
  font-size: 16px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-input::placeholder {
  color: rgba(81, 66, 16, 0.6);
}

.form-input:focus {
  outline: none;
  border-color: #8b6914;
  background: rgba(255, 255, 255, 0.25);
}

.password-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.form-submit {
  text-align: center;
}

.submit-btn {
  background: linear-gradient(135deg, #8b6914 0%, #514210 100%);
  color: #fff;
  border: none;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 5px 15px rgba(139, 105, 20, 0.3);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #514210 0%, #8b6914 100%);
}

.main-content-pedidos {
  min-height: 80vh;
  background: linear-gradient(135deg, #f4e4bc 0%, #d4af37 50%, #8b6914 100%);
  padding: 80px 0;
}

.orders-section {
  width: 100%;
}

.orders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.orders-column {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.orders-title {
  font-size: 28px;
  font-weight: 700;
  color: #8b6914;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.order-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.order-card:hover {
  border-color: #8b6914;
}

.order-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-image .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-name {
  font-size: 20px;
  font-weight: 700;
  color: #514210;
  margin: 0;
}

.order-date {
  font-size: 14px;
  color: #8b6914;
  margin: 0;
}

.order-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.order-status.delivered {
  background: #4caf50;
  color: #fff;
}

.order-status.pending {
  background: #ff9800;
  color: #fff;
}

.footer {
  background: #747119;
  min-height: 200px;
}

/* Tablets - Paisagem */
@media (max-width: 1524px) {
  .anniversary-banner {
    max-width: 90%;
    border-radius: 18px;
  }

  .hero-content {
    padding: 50px 0;
    min-height: 55vh;
  }
}

/* Tablets - Retrato */
@media (max-width: 768px) {
  .anniversary-banner {
    max-width: 95%;
    width: 95%;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .hero-content {
    padding: 45px 0;
    min-height: 50vh;
  }

  .hero {
    min-height: 60vh;
  }
}

/* Smartphones - Paisagem */
@media (max-width: 640px) {
  .anniversary-banner {
    max-width: 98%;
    width: 98%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }

  .hero-content {
    padding: 35px 0;
    min-height: 45vh;
  }

  .hero {
    min-height: 55vh;
  }

  .anniversary-section {
    padding: 0 10px;
  }
}

/* Smartphones - Retrato */
@media (max-width: 480px) {
  .anniversary-banner {
    max-width: 100%;
    width: 100%;
    border-radius: 10px;
    margin: 0 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .hero-content {
    padding: 30px 0;
    min-height: 40vh;
  }

  .hero {
    min-height: 50vh;
  }

  .anniversary-section {
    padding: 0 15px;
  }
}

@media (max-width: 770px) {
  .container {
    padding: 0 20px;
  }

  .header-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .logo-img {
    height: 60px;
  }

  .search-bar input {
    width: 100%;
    max-width: 300px;
  }

  .main-nav,
  .nav-quem-somos,
  .nav-produtos,
  .nav-contato,
  .nav-cadastro,
  .nav-pedidos {
    padding: 10px 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 0 20px;
  }

  .nav-list a {
    font-size: 14px;
    padding: 8px 0;
    display: block;
    width: 100%;
  }

  /* Banner responsivo - Configurações específicas para mobile */
  .hero-content {
    padding: 25px 0;
    min-height: 35vh;
  }

  .anniversary-banner {
    max-width: 100%;
    width: calc(100% - 20px);
    border-radius: 8px;
    margin: 0 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  }

  .hero {
    min-height: 45vh;
    padding: 20px 0;
  }

  .anniversary-section {
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-quem-somos {
    height: 60vh;
  }

  .content-overlay {
    padding: 20px;
    align-items: center;
  }

  .text-box {
    padding: 25px 20px;
    margin: 0 15px;
    border-radius: 8px;
  }

  .text-box h1 {
    font-size: 24px;
  }

  .text-box p {
    font-size: 14px;
    line-height: 1.6;
  }

  .main-content-produtos {
    padding: 40px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-image {
    height: 300px;
  }

  .product-side-text {
    display: none;
  }

  .main-content-contato {
    padding: 50px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
  }

  .contact-column {
    gap: 35px;
  }

  .contact-title {
    font-size: 20px;
  }

  .contact-info {
    font-size: 16px;
  }

  .main-content-cadastro {
    padding: 50px 0;
  }

  .registration-section {
    padding: 25px 20px;
    margin: 0 15px;
    border-radius: 15px;
  }

  .registration-header {
    margin-bottom: 35px;
  }

  .registration-header h1 {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .registration-header p {
    font-size: 15px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }

  .password-section {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }

  .form-column {
    gap: 25px;
  }

  .form-group {
    gap: 8px;
  }

  .form-label {
    font-size: 15px;
  }

  .form-input {
    padding: 14px 18px;
    font-size: 15px;
  }

  .submit-btn {
    padding: 16px 30px;
    font-size: 16px;
    border-radius: 40px;
  }

  .main-content-pedidos {
    padding: 50px 0;
  }

  .orders-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
  }

  .orders-column {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .orders-title {
    font-size: 22px;
    margin-bottom: 25px;
    letter-spacing: 1px;
  }

  .orders-list {
    gap: 20px;
  }

  .order-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 18px;
    border-radius: 12px;
  }

  .order-image {
    width: 90px;
    height: 90px;
  }

  .product-name {
    font-size: 18px;
  }

  .order-date {
    font-size: 13px;
  }

  .order-status {
    padding: 5px 10px;
    font-size: 11px;
  }
}
