    /* Variáveis para cores e fontes */
    :root {
      --background-color-header: #F8EEDB;
      --background-color-body: #FFFFFF;
      --text-color: #333333;
      --link-hover-color: #333333;
      --accent-color: #D4A373;
      --secondary-color: #E9EDC9;
      --dark-accent: #CCD5AE;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --footer-bg: #333333;
      --footer-text: #FFFFFF;
    }

    /* Estilos gerais do corpo da página */
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: var(--background-color-body);
      color: var(--text-color);
      line-height: 1.6;
    }

    /* Estilos do cabeçalho */
    .header {
      width: 100%;
      background-color: var(--background-color-header);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      position: relative;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .logo img {
      height: 60px;
      width: auto;
      vertical-align: middle;
    }

    .nav {
      display: flex;
      gap: 2rem;
    }

    .nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: normal;
      position: relative;
      padding-bottom: 5px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .nav a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: transparent;
      bottom: 0;
      left: 0;
      transition: background-color 0.3s ease;
    }

    .nav a:hover::after {
      background-color: var(--link-hover-color);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-container {
      display: flex;
      align-items: center;
      position: relative;
    }

    .search-container input {
      border: none;
      background-color: transparent;
      font-size: 0.9rem;
      text-transform: uppercase;
      padding-right: 25px;
      outline: none;
      color: var(--text-color);
      width: 180px;
    }

    .search-container input::placeholder {
      color: var(--text-color);
      opacity: 0.7;
    }

    .search-container .search-icon {
      position: absolute;
      right: 0;
      cursor: pointer;
    }

    .login-link img, .cart-link img {
      height: 40px;
      width: auto;
      vertical-align: middle;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 100;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--text-color);
      transition: all 0.3s ease;
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--background-color-header);
      z-index: 90;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: flex;
    }

    .mobile-nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: bold;
      font-size: 1.2rem;
      text-transform: uppercase;
    }

    .mobile-actions {
      display: none;
      margin-top: 2rem;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .mobile-actions.active {
      display: flex;
    }

    /* Estilos do Carrossel - Versão Melhorada */
    .carousel {
      position: relative;
      width: 100%;
      max-width: 1570px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }

    .carousel-inner {
      display: flex;
      transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    }

    .carousel-item {
      min-width: 100%;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 600px;
      position: relative;
      overflow: hidden;
    }

    .carousel-item img, .carousel-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.05);
      transition: transform 5s ease-out;
    }

    .carousel-item.active img, .carousel-item.active video {
      transform: scale(1);
    }

    .carousel-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-left: 10%;
      color: white;
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .carousel-item.active .carousel-overlay {
      opacity: 1;
      transform: translateX(0);
    }

    .carousel-title {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      line-height: 1.2;
      max-width: 600px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .carousel-subtitle {
      font-size: 1.5rem;
      font-weight: 300;
      margin-bottom: 2rem;
      max-width: 500px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    }

    .carousel-btn {
      display: inline-block;
      background-color: var(--accent-color);
      color: white;
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      border: 2px solid var(--accent-color);
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .carousel-btn:hover {
      background-color: transparent;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }

    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 2rem;
      box-sizing: border-box;
      z-index: 10;
    }

    .carousel-nav button {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      border: 2px solid white;
      padding: 10px;
      cursor: pointer;
      font-size: 1.5rem;
      border-radius: 50%;
      transition: all 0.3s ease;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
    }

    .carousel-nav button:hover {
      background: var(--accent-color);
      border-color: var(--accent-color);
      transform: scale(1.1);
    }

    /* Indicadores do carrossel */
    .carousel-indicators {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 10;
    }

    .indicator {
      width: 50px;
      height: 5px;
      border-radius: 2px;
      background-color: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .indicator.active {
      background-color: var(--accent-color);
      width: 70px;
    }
    
    /* Animação de fade para os slides */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    .carousel-item {
      opacity: 0.7;
      transition: opacity 0.8s ease;
    }
    
    .carousel-item.active {
      opacity: 1;
      animation: fadeIn 1s ease forwards;
    }

    /* Seção de Categorias */

    a.category-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.category-card:hover {
  text-decoration: none;
}

    .categories {
      max-width: 1200px;
      margin: 3rem auto;
      padding: 0 1rem;
    }

    .section-title {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
      font-weight: 700 !important;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 50px;
      height: 3px;
      background-color: var(--accent-color);
      margin: 0.5rem auto;
       font-weight: bold;
    }

    .section-title animate-fade-in {

      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin: 0 auto;
    }
    
    @media (max-width: 1200px) {
      .category-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      .category-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 480px) {
      .category-grid {
        grid-template-columns: repeat(1, 1fr);
      }
    }

    .category-card {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

    .category-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .category-card:hover img {
      transform: scale(1.05);
    }

    .category-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      color: white;
      padding: 1rem;
      text-align: center;
    }

    .category-info h3 {
      margin: 0;
      font-size: 1.2rem;
      font-weight: 500;
      text-transform: uppercase;
    }

    /* Seção de Produtos em Destaque */
    .featured-products {
      background-color: var(--light-gray);
      padding: 3rem 0;
    }

    .products-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }



 

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .product-card {
      background-color: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .product-image {
      height: 280px;
      overflow: hidden;
      position: relative;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-card:hover .product-image img {
      transform: scale(1.1);
    }

    .product-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
      color: white;
    }

    .product-tag.new {
      background-color: var(--accent-color);
    }

    .product-tag.hot {
      background-color: #FF5722;
    }

    .product-tag.sale {
      background-color: #E91E63;
    }

    .product-info {
      padding: 20px;
    }

    .product-name {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: var(--text-color);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .product-price {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .old-price {
      color: #999;
      text-decoration: line-through;
      margin-right: 10px;
      font-size: 0.9rem;
    }

    .current-price {
      color: var(--accent-color);
      font-weight: 700;
      font-size: 1.2rem !important;
      font-weight: bold !important;
    }

    .product-rating {
      color: #FFD700;
      font-size: 0.9rem;
    }

    .product-rating span {
      color: #777;
      margin-left: 5px;
    }

    .product-actions {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      padding: 10px 0;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }

    .product-card:hover .product-actions {
      transform: translateY(0);
    }

    .action-btn {
      background: none;
      border: none;
      color: white;
      font-size: 1.2rem;
      margin: 0 10px;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .action-btn:hover {
      color: var(--accent-color);
    }

    .add-to-cart {
      background-color: var(--accent-color);
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 500;
      transition: background-color 0.3s;
      flex-grow: 1;
      text-align: center;
    }

    .add-to-cart:hover {
      background-color: var(--dark-accent);
    }

    .wishlist-btn {
      background-color: transparent;
      border: 1px solid var(--medium-gray);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      margin-left: 10px;
      transition: background-color 0.3s, color 0.3s;
    }

    .wishlist-btn:hover {
      background-color: var(--accent-color);
      color: white;
    }

    /* Seção de Promoção */
    .promo-section {
      background-color: var(--secondary-color);
      padding: 3rem 0;
      margin: 3rem 0;
    }

    .promo-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .promo-image {
      flex: 1;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    }

    .promo-image img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
    }

    .promo-content {
      flex: 1;
      padding: 2rem;
    }

    .promo-title {
      font-size: 2.5rem;
      margin: 0 0 1rem;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .promo-description {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .promo-btn {
      display: inline-block;
      background-color: var(--accent-color);
      color: white;
      padding: 0.8rem 2rem;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: background-color 0.3s;
    }

    .promo-btn:hover {
      background-color: var(--dark-accent);
    }

    /* Seção de Newsletter */
    .newsletter {
      max-width: 1200px;
      margin: 3rem auto;
      padding: 2rem;
      background-color: var(--light-gray);
      border-radius: 8px;
      text-align: center;
    }

    .newsletter h2 {
      margin-top: 0;
      font-size: 1.8rem;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .newsletter p {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
    }

    .newsletter-form {
      display: flex;
      max-width: 500px;
      margin: 0 auto;
    }

    .newsletter-form input {
      flex-grow: 1;
      padding: 0.8rem 1rem;
      border: 1px solid var(--medium-gray);
      border-radius: 4px 0 0 4px;
      font-size: 1rem;
    }

    .newsletter-form button {
      background-color: var(--accent-color);
      color: white;
      border: none;
      padding: 0 1.5rem;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: background-color 0.3s;
    }

    .newsletter-form button:hover {
      background-color: var(--dark-accent);
    }

    /* Rodapé */
    .footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
      padding: 3rem 0 1rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .footer-column h3 {
      font-size: 1.2rem;
      margin-top: 0;
      margin-bottom: 1.5rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column li {
      margin-bottom: 0.8rem;
    }

    .footer-column a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-column a:hover {
      color: var(--accent-color);
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 1rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: rgba(255,255,255,0.1);
      border-radius: 50%;
      transition: background-color 0.3s;
    }

    .social-links a:hover {
      background-color: var(--accent-color);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 2rem auto 0;
      padding: 1.5rem 1rem 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.7);
    }

    /* Novas seções */
    .about-section {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 0 1rem;
    }

    .about-content {
      display: flex;
      gap: 3rem;
      align-items: center;
    }

    .about-text {
      flex: 1;
    }

    .about-image {
      flex: 1;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    }

    .about-image img {
      width: 100%;
      display: block;
    }

    .values-section {
      background-color: var(--secondary-color);
      padding: 4rem 0;
    }

    .values-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .value-card {
      background-color: white;
      border-radius: 8px;
      padding: 2rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .value-card:hover {
      transform: translateY(-5px);
    }

    .value-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 1.5rem;
      background-color: var(--light-gray);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }

    .value-title {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      font-weight: 500;
    }

    .collections-section {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 0 1rem;
    }

    .collections-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-top: 2rem;
    }

    .collection-card {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      height: 400px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .collection-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .collection-card:hover img {
      transform: scale(1.05);
    }

    .collection-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      color: white;
    }

    .collection-title {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      font-weight: 400;
    }

    .collection-btn {
      display: inline-block;
      background-color: white;
      color: var(--text-color);
      padding: 0.5rem 1.5rem;
      margin-top: 1rem;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 500;
      transition: background-color 0.3s;
    }

    .collection-btn:hover {
      background-color: var(--accent-color);
      color: white;
    }

    .testimonials {
      background-color: var(--light-gray);
      padding: 4rem 0;
    }

    .testimonials-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 2rem;
    }

    /* Seção de Empresas Parceiras */
    .partners-section {
      background-color: var(--light-gray);
      padding: 4rem 0;
      margin-top: 3rem;
    }

    .partners-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .partners-grid {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 3rem;
      margin-top: 2rem;
    }

    .partner-logo {
      width: 150px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .partner-logo:hover {
      transform: scale(1.1);
    }

    .partner-logo img {
      max-width: 100%;
      max-height: 100%;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }

    .partner-logo:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }

    .testimonial-card {
      background-color: white;
      border-radius: 8px;
      padding: 2rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }

    .testimonial-text {
      font-style: italic;
      margin-bottom: 1.5rem;
      position: relative;
      font-weight:  550;
    }

    .testimonial-text::before {
      content: '"';
      font-size: 3rem;
      color: var(--accent-color);
      opacity: 0.3;
      position: absolute;
      top: -1rem;
      left: -1rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 1rem;
      overflow: hidden;
    }

    .author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .author-info h4 {
      margin: 0;
      font-size: 1rem;
    }

    .author-info p {
      margin: 0;
      font-size: 0.9rem;
      color: #777;
    }

    .instagram-section {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 0 1rem;
      text-align: center;
    }

    .instagram-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px;
      margin-top: 2rem;
    }

    .instagram-item {
      position: relative;
      aspect-ratio: 1;
      overflow: hidden;
      border-radius: 4px;
    }

    .instagram-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .instagram-item:hover img {
      transform: scale(1.1);
    }

    .instagram-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0,0,0,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .instagram-item:hover .instagram-overlay {
      opacity: 1;
    }

    .instagram-icon {
      color: white;
      font-size: 1.5rem;
    }

    .instagram-btn {
      display: inline-block;
      background-color: var(--accent-color);
      color: white;
      padding: 0.8rem 2rem;
      margin-top: 2rem;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: background-color 0.3s;
    }

    .instagram-btn:hover {
      background-color: var(--dark-accent);
    }

    /* Media Queries para Responsividade */
    @media (max-width: 1024px) {
      .nav {
        gap: 1.5rem;
      }
      
      .nav a {
        font-size: 0.9rem;
      }
      
      .search-container input {
        width: 150px;
      }
      
      .carousel-item {
        height: 450px;
      }

      .category-grid,
      .products-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .promo-container {
        flex-direction: column;
      }

      .promo-image,
      .promo-content {
        flex: none;
        width: 100%;
      }

      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }

      .about-content {
        flex-direction: column;
      }

      .values-grid,
      .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav,
      .actions {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .logo img {
        height: 45px;
      }
      
      .carousel-item {
        height: 350px;
      }
      
      .carousel-nav button {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
      }

      .category-grid,
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .newsletter-form {
        flex-direction: column;
      }

      .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 1rem;
      }

      .newsletter-form button {
        border-radius: 4px;
        padding: 0.8rem;
      }

      .collections-grid {
        grid-template-columns: 1fr;
      }

      .values-grid {
        grid-template-columns: 1fr;
      }

      .testimonial-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 576px) {
      .header-container {
        padding: 0 0.5rem;
      }
      
      .logo img {
        height: 35px;
      }
      
      .carousel-item {
        height: 250px;
      }
      
      .carousel-nav button {
        width: 30px;
        height: 30px;
        font-size: 1rem;
      }
      
      .search-container input {
        width: 120px;
        font-size: 0.8rem;
      }

      .category-grid,
      .products-grid {
        grid-template-columns: 1fr;
      }

      .footer-container {
        grid-template-columns: 1fr;
      }

      .section-title {
        font-size: 1.5rem;
         font-weight: bold;
      }

      .promo-title {
        font-size: 1.8rem;
      }

      .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

        /* Seção de Benefícios */
    .benefits-section {
      max-width: 1200px;
      margin: 3rem auto;
      padding: 0 1rem;
    }

    .benefits-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      background-color: white;
      border-radius: 8px;
      padding: 2rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .benefit-item {
      text-align: center;
    }

    .benefit-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 1rem;
      background-color: var(--secondary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-color);
    }

    .benefit-item h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      font-weight: 500;
    }

    .benefit-item p {
      font-size: 0.9rem;
      color: #666;
    }

    @media (max-width: 1024px) {
      .benefits-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .benefits-container {
        grid-template-columns: 1fr;
      }
    }

    /* Seção de FAQ */
    .faq-section {
      background-color: var(--light-gray);
      padding: 4rem 0;
    }

    .faq-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .faq-list {
      margin-top: 2rem;
    }

    .faq-item {
      background-color: white;
      border-radius: 8px;
      margin-bottom: 1rem;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      overflow: hidden;
    }

    .faq-question {
      padding: 1.5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
    }

    .faq-question h3 {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 500;
      font-weight: 550;
    }

    .faq-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
    }

    .faq-toggle .minus-icon {
      display: none;
    }

    .faq-item.active .plus-icon {
      display: none;
    }

    .faq-item.active .minus-icon {
      display: block;
    }

    .faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      font-weight: 600;
    }

    .faq-item.active .faq-answer {
      padding: 0 1.5rem 1.5rem;
      max-height: 1000px;
    }
    
    /* Seção de Marcas Parceiras */
    .partners-section {
      background-color: white;
      padding: 4rem 0;
      border-top: 1px solid var(--medium-gray);
    }
    
    .partners-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      text-align: center;
    }
    
    .partners-description {
      max-width: 700px;
      margin: 0 auto 2rem;
      font-size: 1.1rem;
    }
    
    .partners-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 2rem;
    }
    
    .partner-item {
      flex: 0 0 calc(16.666% - 2rem);
      min-width: 120px;
      padding: 1rem;
      background-color: var(--light-gray);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .partner-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .partner-item img {
      max-width: 100%;
      max-height: 60px;
      object-fit: contain;
    }
    
    @media (max-width: 1024px) {
      .partner-item {
        flex: 0 0 calc(33.333% - 2rem);
      }
    }
    
    @media (max-width: 768px) {
      .partner-item {
        flex: 0 0 calc(33.333% - 2rem);
      }
    }
    
    @media (max-width: 480px) {
      .partner-item {
        flex: 0 0 calc(50% - 2rem);
      }
    }

    /* Menu hamburguer ativo */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }
  /* Animações */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  @keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }

  @keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }

  /* Classes de animação */
  .animate-fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
  }

  .animate-scale-in {
    animation: scaleIn 0.8s ease forwards;
    opacity: 0;
  }

  .animate-slide-left {
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
  }

  .animate-slide-right {
    animation: slideInRight 0.8s ease forwards;
    opacity: 0;
  }

  .animate-pulse {
    animation: pulse 2s infinite;
  }

  .animate-float {
    animation: float 3s ease-in-out infinite;
  }

  /* Atraso nas animações */
  .delay-100 { animation-delay: 100ms; }
  .delay-200 { animation-delay: 200ms; }
  .delay-300 { animation-delay: 300ms; }
  .delay-400 { animation-delay: 400ms; }
  .delay-500 { animation-delay: 500ms; }
  .delay-600 { animation-delay: 600ms; }
  .delay-700 { animation-delay: 700ms; }
  .delay-800 { animation-delay: 800ms; }

  /* Contador de estatísticas */
  .stats-section {
    background-color: var(--accent-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
  }

  .stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .stat-item {
    flex: 1;
    min-width: 200px;
  }

  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
  }

  .stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Banner promocional interativo */
  .interactive-banner {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
    overflow: hidden;
    border-radius: 8px;
  }

  .interactive-banner-content {
    position: relative;
    background-color: var(--secondary-color);
    padding: 3rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    transition: transform 0.3s ease;
  }

  .interactive-banner-content:hover {
    transform: translateY(-5px);
  }

  .interactive-banner-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
  }

  .interactive-banner-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
  }

  .interactive-banner-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .interactive-banner-btn:hover {
    background-color: var(--dark-accent);
    transform: scale(1.05);
  }

  .interactive-banner-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
  }

  .shape-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    left: 10%;
    animation: float 4s ease-in-out infinite;
  }

  .shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: 10%;
    animation: float 5s ease-in-out infinite 1s;
  }

  .shape-3 {
    width: 70px;
    height: 70px;
    top: 40%;
    right: 20%;
    animation: float 3s ease-in-out infinite 0.5s;
  }

  /* Carrossel de produtos em destaque */
.product-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.product-carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  justify-content: flex-start;
}

.product-slide {
  min-width: calc(25% - 15px); /* 4 slides por vez em telas grandes */
  padding: 0 7.5px;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* Garantir que os cards dentro do carrossel tenham o mesmo estilo */
.product-slide .product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
}

.product-slide .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-slide .product-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.product-slide .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-slide .product-card:hover .product-image img {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .product-slide {
    min-width: calc(33.333% - 13.33px); /* 3 slides por vez em tablets */
  }
}

@media (max-width: 768px) {
  .product-slide {
    min-width: calc(50% - 10px); /* 2 slides por vez em mobile landscape */
  }
}

@media (max-width: 576px) {
  .product-slide {
    min-width: calc(100% - 0px); /* 1 slide por vez em mobile portrait */
    padding: 0;
  }
}

    /* Variáveis para cores e fontes - IDÊNTICAS */
    :root {
      --background-color-header: #F8EEDB;
      --background-color-body: #FFFFFF;
      --text-color: #333333;
      --link-hover-color: #333333;
      --accent-color: #D4A373;
      --secondary-color: #E9EDC9;
      --dark-accent: #CCD5AE;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --footer-bg: #333333;
      --footer-text: #FFFFFF;
      --success-color: #CCD5AE;
      --error-color: #D4A373;
      --info-color: #A8B894;
      --warm-beige: #F5E6D3;
      --warm-brown: #8B7355;
      --gold-accent: #D4AF37;
    }

    /* Reset e estilos gerais */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: linear-gradient(135deg, #FAF7F0 0%, #F8EEDB 100%);
      color: var(--text-color);
      line-height: 1.6;
      min-height: 100vh;
    }

    /* Estilos do cabeçalho IDÊNTICO */
    .header {
      width: 100%;
      background-color: var(--background-color-header);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      position: relative;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .logo img {
      height: 60px;
      width: auto;
      vertical-align: middle;
    }

    .nav {
      display: flex;
      gap: 2rem;
    }

    .nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: normal;
      position: relative;
      padding-bottom: 5px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .nav a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: transparent;
      bottom: 0;
      left: 0;
      transition: background-color 0.3s ease;
    }

    .nav a:hover::after {
      background-color: var(--link-hover-color);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-container {
      display: flex;
      align-items: center;
      position: relative;
    }

    .search-container input {
      border: none;
      background-color: transparent;
      font-size: 0.9rem;
      text-transform: uppercase;
      padding-right: 25px;
      outline: none;
      color: var(--text-color);
      width: 180px;
    }

    .search-container input::placeholder {
      color: var(--text-color);
      opacity: 0.7;
    }

    .search-container .search-icon {
      position: absolute;
      right: 0;
      cursor: pointer;
    }

    .login-link img, .cart-link img {
      height: 40px;
      width: auto;
      vertical-align: middle;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 100;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--text-color);
      transition: all 0.3s ease;
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--background-color-header);
      z-index: 90;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: flex;
    }

    .mobile-nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: bold;
      font-size: 1.2rem;
      text-transform: uppercase;
    }

    .mobile-actions {
      display: none;
      margin-top: 2rem;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .mobile-actions.active {
      display: flex;
    }

    /* Container Principal de Login */
    .login-container {
      max-width: 650px;
      margin: 70px auto;
      padding: 20px;
      position: relative;
      z-index: 1;
    }

    /* Card Principal */
    .login-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(212, 163, 115, 0.15);
      overflow: hidden;
      border: 1px solid rgba(212, 163, 115, 0.2);
      position: relative;
      display: flex;
      flex-direction: column;
    }

    /* Decoração do card com padrão elegante */
    .login-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 150px;
      height: 150px;
      background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4a373' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
      background-size: 60px 60px;
      opacity: 0.8;
      z-index: 0;
      pointer-events: none;
    }

    .login-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 200px;
      height: 200px;
      background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ccd5ae' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
      background-size: 60px 60px;
      opacity: 0.8;
      z-index: 0;
      pointer-events: none;
    }

    /* Borda decorativa superior */
    .login-card-border {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 8px;
      background: linear-gradient(to right, var(--accent-color), var(--dark-accent), var(--secondary-color));
      z-index: 1;
    }

    /* Header do Card */
    .login-header {
      background: white;
      padding: 50px 40px 40px;
      text-align: center;
      position: relative;
      border-bottom: 2px solid rgba(212, 163, 115, 0.15);
      z-index: 1;
    }

    .logo-container {
      width: 120px;
      height: 120px;
      margin: 0 auto 25px;
      position: relative;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .logo-container::after {
      content: '';
      position: absolute;
      width: 140px;
      height: 20px;
      background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, transparent 70%);
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 50%;
      filter: blur(5px);
      opacity: 0.6;
      animation: shadow 6s ease-in-out infinite;
    }

    @keyframes shadow {
      0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
      50% { transform: translateX(-50%) scale(0.8); opacity: 0.4; }
    }

    .logo-container img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .login-header h1 {
      font-family: 'Playfair Display', serif;
      color: var(--text-color);
      font-size: 2.5rem;
      margin-bottom: 15px;
      font-weight: 700;
      position: relative;
      display: inline-block;
    }

    .login-header h1::after {
      content: '';
      position: absolute;
      width: 60px;
      height: 3px;
      background: var(--accent-color);
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 3px;
    }

    .login-header p {
      color: var(--warm-brown);
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.5;
      max-width: 450px;
      margin: 0 auto;
    }

    /* Body do Card */
    .login-body {
      padding: 40px 50px;
      background: white;
      position: relative;
      z-index: 1;
    }

    /* Social Login */
    .social-login {
      margin-bottom: 35px;
    }

    .social-buttons {
      display: flex;
      gap: 20px;
      margin-bottom: 30px;
    }

    .social-btn {
      flex: 1;
      padding: 15px;
      border: 1px solid var(--medium-gray);
      background: white;
      border-radius: 12px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: var(--text-color);
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      position: relative;
      overflow: hidden;
    }

    .social-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
      );
      transition: 0.5s;
      z-index: 1;
    }

    .social-btn:hover::before {
      left: 100%;
    }

    .social-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      border-color: var(--accent-color);
    }

    .social-btn i {
      font-size: 1.4rem;
      position: relative;
      z-index: 2;
    }

    .social-btn span {
      position: relative;
      z-index: 2;
    }

    .social-btn.google i {
      color: red;
    }

    .social-btn.facebook i {
      color: blue;
    }

    .divider {
      display: flex;
      align-items: center;
      margin: 30px 0;
      gap: 15px;
    }

    .divider::before,
    .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--medium-gray), transparent);
    }

    .divider span {
      color: var(--text-color);
      font-size: 0.95rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 0 15px;
      background: white;
      position: relative;
    }

    /* Form Groups */
    .form-group {
      margin-bottom: 30px;
      position: relative;
    }

    .form-group label {
      display: block;
      margin-bottom: 10px;
      color: var(--text-color);
      font-weight: 600;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .form-group label .required {
      color: var(--accent-color);
      margin-left: 2px;
    }

    .input-wrapper {
      position: relative;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    }

    .input-wrapper::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 4px;
      background: linear-gradient(to bottom, var(--accent-color), var(--dark-accent));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .input-wrapper:focus-within::before {
      opacity: 1;
    }

    .input-wrapper i {
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--warm-brown);
      transition: all 0.3s ease;
      font-size: 1.1rem;
    }

    .form-group input {
      width: 100%;
      padding: 16px 15px 16px 50px;
      border: 2px solid var(--medium-gray);
      border-radius: 12px;
      font-size: 1.05rem;
      font-family: 'Montserrat', sans-serif;
      transition: all 0.3s ease;
      background: white;
      color: var(--text-color);
    }

    .form-group input::placeholder {
      color: #999;
      font-size: 0.95rem;
    }

    .form-group input:focus {
      outline: none;
      border-color: var(--accent-color);
      box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
    }

    .form-group input:focus + i,
    .input-wrapper:focus-within i {
      color: var(--accent-color);
    }

    /* Input validation states */
    .form-group.error input {
      border-color: var(--error-color);
      background-color: rgba(212, 163, 115, 0.03);
    }

    .form-group.error .input-wrapper::before {
      background: var(--error-color);
      opacity: 1;
    }

    .form-group.success input {
      border-color: var(--success-color);
      background-color: rgba(204, 213, 174, 0.03);
    }

    .form-group.success .input-wrapper::before {
      background: var(--success-color);
      opacity: 1;
    }

    .error-message {
      display: none;
      color: var(--error-color);
      font-size: 0.85rem;
      margin-top: 8px;
      display: flex;
      align-items: center;
      gap: 5px;
      animation: fadeIn 0.3s ease;
    }

    .form-group.error .error-message {
      display: flex;
    }

    /* Password Toggle */
    .password-toggle {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      color: var(--warm-brown);
      transition: all 0.3s ease;
      background: none;
      border: none;
      padding: 8px;
      border-radius: 50%;
      z-index: 2;
    }

    .password-toggle:hover {
      color: var(--accent-color);
      background: rgba(212, 163, 115, 0.1);
    }

    /* Remember Me & Forgot Password */
    .login-options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 35px;
    }

    .remember-me {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }

    .remember-me input[type="checkbox"] {
      width: 20px;
      height: 20px;
      accent-color: var(--accent-color);
      cursor: pointer;
      border-radius: 4px;
    }

    .remember-me label {
      font-size: 0.95rem;
      color: var(--text-color);
      cursor: pointer;
    }

    .forgot-password {
      font-size: 0.95rem;
      color: var(--accent-color);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 5px 10px;
      border-radius: 20px;
    }

    .forgot-password:hover {
      background: rgba(212, 163, 115, 0.1);
      text-decoration: underline;
    }

    /* Action Buttons */
    .form-actions {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .submit-btn {
      width: 100%;
      padding: 18px;
      background: var(--accent-color);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      font-family: 'Montserrat', sans-serif;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
      position: relative;
      overflow: hidden;
    }

    .submit-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
      );
      transition: 0.5s;
    }

    .submit-btn:hover::before {
      left: 100%;
    }

    .submit-btn:hover {
      background: var(--warm-brown);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(212, 163, 115, 0.4);
    }

    .submit-btn:active {
      transform: translateY(-1px);
    }

    .submit-btn.loading {
      pointer-events: none;
      color: transparent;
    }

    .submit-btn.loading::after {
      content: '';
      position: absolute;
      width: 25px;
      height: 25px;
      margin: auto;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border: 3px solid transparent;
      border-top-color: white;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Footer do Card */
    .login-footer {
      text-align: center;
      padding: 25px 30px;
      background: var(--light-gray);
      border-top: 1px solid var(--medium-gray);
      position: relative;
      z-index: 1;
    }

    .signup-link-footer {
      color: var(--text-color);
      font-size: 1rem;
    }

    .signup-link-footer a {
      color: var(--accent-color);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      position: relative;
      display: inline-block;
    }

    .signup-link-footer a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background: var(--accent-color);
      bottom: -2px;
      left: 0;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s ease;
    }

    .signup-link-footer a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    /* Success State */
    .success-state {
      display: none;
      text-align: center;
      padding: 60px 40px;
    }

    .success-icon {
      width: 120px;
      height: 120px;
      margin: 0 auto 30px;
      position: relative;
    }

    .success-circle {
      stroke-dasharray: 300;
      stroke-dashoffset: 300;
      stroke-width: 3;
      stroke: var(--dark-accent);
      fill: none;
      animation: drawCircle 0.8s ease forwards;
    }

    @keyframes drawCircle {
      to { stroke-dashoffset: 0; }
    }

    .success-check {
      stroke-dasharray: 60;
      stroke-dashoffset: 60;
      stroke-width: 3;
      stroke: var(--dark-accent);
      fill: none;
      animation: drawCheck 0.4s ease forwards 0.8s;
    }

    @keyframes drawCheck {
      to { stroke-dashoffset: 0; }
    }

    .success-state h2 {
      font-family: 'Playfair Display', serif;
      color: var(--text-color);
      font-size: 2.2rem;
      margin-bottom: 20px;
    }

    .success-state p {
      color: var(--warm-brown);
      font-size: 1.1rem;
      margin-bottom: 15px;
      line-height: 1.6;
      animation: fadeIn 0.5s ease;
    }

    #redirectCountdown {
      display: inline-block;
      font-weight: 700;
      color: var(--accent-color);
      font-size: 1.4rem;
      animation: pulse 1s infinite;
      min-width: 30px;
      text-align: center;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

    /* Efeito de brilho no card */
    @keyframes cardShine {
      0% {
        background-position: 0% 0%;
      }
      100% {
        background-position: 200% 0%;
      }
    }

    .login-card {
      position: relative;
      overflow: hidden;
    }

    .login-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 8px;
      background: linear-gradient(90deg, 
        var(--accent-color), 
        var(--dark-accent), 
        var(--secondary-color),
        var(--accent-color));
      background-size: 200% 100%;
      animation: cardShine 6s linear infinite;
      z-index: 2;
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .nav, .actions {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .login-container {
        margin: 40px auto;
        padding: 15px;
      }

      .login-header {
        padding: 35px 25px;
      }

      .login-header h1 {
        font-size: 2rem;
      }

      .login-body {
        padding: 30px 25px;
      }

      .social-buttons {
        flex-direction: column;
      }

      .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
      }
    }

    @media (max-width: 480px) {
      .login-card {
        border-radius: 15px;
      }

      .logo-container {
        width: 90px;
        height: 90px;
      }

      .login-header h1 {
        font-size: 1.8rem;
      }

      .login-header p {
        font-size: 0.9rem;
      }

      .submit-btn {
        padding: 15px;
        font-size: 1rem;
      }
    }

    /* Hamburger menu animation */
    .hamburger.active span:nth-child(1) {
      transform: translateY(11px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-11px) rotate(-45deg);
    }

    /* Animações adicionais */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .form-group {
      animation: fadeIn 0.5s ease;
    }

    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      25% { transform: translateX(-10px); }
      75% { transform: translateX(10px); }
    }

    .error-shake {
      animation: shake 0.5s ease;
    }

        /* Variáveis para cores e fontes */
    :root {
      --background-color-header: #F8EEDB;
      --background-color-body: #FFFFFF;
      --text-color: #333333;
      --link-hover-color: #333333;
      --accent-color: #D4A373;
      --secondary-color: #E9EDC9;
      --dark-accent: #CCD5AE;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --footer-bg: #333333;
      --footer-text: #FFFFFF;
      --product-showcase-bg: #f9f9f9;
      --success-color: #4CAF50;
      --error-color: #f44336;
    }

    /* Estilos gerais do corpo da página */
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: var(--background-color-body);
      color: var(--text-color);
      line-height: 1.6;
    }

    /* Estilos do cabeçalho */
    .header {
      width: 100%;
      background-color: var(--background-color-header);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      position: relative;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .logo img {
      height: 60px;
      width: auto;
      vertical-align: middle;
    }

    .nav {
      display: flex;
      gap: 2rem;
    }

    .nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: normal;
      position: relative;
      padding-bottom: 5px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .nav a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: transparent;
      bottom: 0;
      left: 0;
      transition: background-color 0.3s ease;
    }

    .nav a:hover::after {
      background-color: var(--link-hover-color);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-container {
      display: flex;
      align-items: center;
      position: relative;
    }

    .search-container input {
      border: none;
      background-color: transparent;
      font-size: 0.9rem;
      text-transform: uppercase;
      padding-right: 25px;
      outline: none;
      color: var(--text-color);
      width: 180px;
    }

    .search-container input::placeholder {
      color: var(--text-color);
      opacity: 0.7;
    }

    .search-container .search-icon {
      position: absolute;
      right: 0;
      cursor: pointer;
    }

    .login-link img, .cart-link img {
      height: 40px;
      width: auto;
      vertical-align: middle;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 100;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--text-color);
      transition: all 0.3s ease;
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--background-color-header);
      z-index: 90;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: flex;
    }

    .mobile-nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: bold;
      font-size: 1.2rem;
      text-transform: uppercase;
    }

    .mobile-actions {
      display: none;
      margin-top: 2rem;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .mobile-actions.active {
      display: flex;
    }

    /* Breadcrumb */
    .breadcrumb {
      max-width: 1200px;
      margin: 2rem auto 0;
      padding: 0 1rem;
    }

    .breadcrumb-list {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: #666;
    }

    .breadcrumb-list a {
      color: #666;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .breadcrumb-list a:hover {
      color: var(--accent-color);
    }

    .breadcrumb-list i {
      font-size: 0.7rem;
    }

    /* Checkout Section */
    .checkout-section {
      max-width: 1200px;
      margin: 2rem auto 3rem;
      padding: 0 1rem;
    }

    .section-title {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 50px;
      height: 3px;
      background-color: var(--accent-color);
      margin: 0.5rem auto;
    }

    /* Progress Steps */
    .checkout-progress {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 3rem;
      padding: 0 1rem;
    }

    .progress-step {
      display: flex;
      align-items: center;
      position: relative;
    }

    .step-circle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: var(--light-gray);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .step-circle.active {
      background-color: var(--accent-color);
      color: white;
    }

    .step-circle.completed {
      background-color: var(--success-color);
      color: white;
    }

    .step-label {
      position: absolute;
      top: 50px;
      white-space: nowrap;
      font-size: 0.85rem;
      color: #666;
      left: 50%;
      transform: translateX(-50%);
    }

    .step-line {
      width: 100px;
      height: 2px;
      background-color: var(--light-gray);
      margin: 0 1rem;
    }

    .step-line.completed {
      background-color: var(--success-color);
    }

    /* Checkout Container */
    .checkout-container {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .checkout-form {
      flex: 1 1 65%;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      padding: 2rem;
    }

    .order-summary {
      flex: 1 1 30%;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      padding: 1.5rem;
      align-self: flex-start;
      position: sticky;
      top: 20px;
    }

    /* Form Sections */
    .form-section {
      margin-bottom: 2.5rem;
    }

    .form-section-title {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--light-gray);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .form-section-title i {
      color: var(--accent-color);
    }

    .form-row {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .form-group {
      flex: 1;
      margin-bottom: 1rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      font-size: 0.9rem;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid var(--medium-gray);
      border-radius: 5px;
      font-size: 0.95rem;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--accent-color);
    }

    .form-group.error input {
      border-color: var(--error-color);
    }

    .error-message {
      color: var(--error-color);
      font-size: 0.8rem;
      margin-top: 0.3rem;
      display: none;
    }

    .form-group.error .error-message {
      display: block;
    }

    /* Payment Methods */
    .payment-methods {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .payment-method {
      position: relative;
      border: 2px solid var(--medium-gray);
      border-radius: 8px;
      padding: 1rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .payment-method:hover {
      border-color: var(--accent-color);
    }

    .payment-method input[type="radio"] {
      position: absolute;
      opacity: 0;
    }

    .payment-method input[type="radio"]:checked + .payment-label {
      color: var(--accent-color);
    }

    .payment-method input[type="radio"]:checked ~ .payment-icon {
      color: var(--accent-color);
    }

    .payment-method.selected {
      border-color: var(--accent-color);
      background-color: rgba(212, 163, 115, 0.05);
    }

    .payment-icon {
      font-size: 2rem;
      margin-bottom: 0.5rem;
      color: #666;
    }

    .payment-label {
      font-size: 0.9rem;
      font-weight: 500;
    }

    /* Card Details */
    .card-details {
      display: none;
      animation: slideDown 0.3s ease;
    }

    .card-details.active {
      display: block;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .card-icons {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .card-icons i {
      font-size: 1.5rem;
      color: #666;
    }

    /* Checkbox */
    .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin: 1rem 0;
    }

    .checkbox-group input[type="checkbox"] {
      margin-top: 0.2rem;
    }

    .checkbox-group label {
      font-size: 0.9rem;
      line-height: 1.4;
    }

    /* Order Summary Styles */
    .summary-header {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--light-gray);
    }

    .summary-items {
      max-height: 300px;
      overflow-y: auto;
      margin-bottom: 1.5rem;
    }

    .summary-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--light-gray);
    }

    .summary-item:last-child {
      border-bottom: none;
    }

    .summary-item-image {
      width: 60px;
      height: 60px;
      overflow: hidden;
      border-radius: 5px;
    }

    .summary-item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .summary-item-details {
      flex: 1;
    }

    .summary-item-title {
      font-size: 0.9rem;
      margin-bottom: 0.3rem;
      font-weight: 500;
    }

    .summary-item-variant {
      font-size: 0.8rem;
      color: #666;
    }

    .summary-item-price {
      font-weight: 600;
      color: var(--accent-color);
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0.8rem;
      font-size: 0.95rem;
    }

    .summary-label {
      color: #666;
    }

    .summary-value {
      font-weight: 600;
    }

    .summary-total {
      font-size: 1.2rem;
      font-weight: 700;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 2px solid var(--light-gray);
    }

    .promo-code {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--light-gray);
    }

    .promo-input-group {
      display: flex;
      gap: 0.5rem;
    }

    .promo-input {
      flex: 1;
      padding: 0.8rem;
      border: 1px solid var(--medium-gray);
      border-radius: 5px;
      font-size: 0.9rem;
    }

    .promo-button {
      padding: 0.8rem 1.5rem;
      background-color: var(--light-gray);
      border: none;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .promo-button:hover {
      background-color: var(--medium-gray);
    }

    /* Buttons */
    .checkout-buttons {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }

    .btn {
      padding: 1rem 2rem;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .btn-secondary {
      background-color: var(--light-gray);
      color: var(--text-color);
    }

    .btn-secondary:hover {
      background-color: var(--medium-gray);
    }

    .btn-primary {
      background-color: var(--accent-color);
      color: white;
      flex: 1;
    }

    .btn-primary:hover {
      background-color: var(--dark-accent);
    }

    .btn-primary:disabled {
      background-color: var(--medium-gray);
      cursor: not-allowed;
    }

    /* Security Badge */
    .security-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
      padding: 1rem;
      background-color: var(--light-gray);
      border-radius: 5px;
      font-size: 0.9rem;
    }

    .security-badge i {
      color: var(--success-color);
      font-size: 1.2rem;
    }

    /* Footer */
    .footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
      padding: 3rem 0 1rem;
      margin-top: 4rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .footer-column h3 {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.5rem;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 30px;
      height: 2px;
      background-color: var(--accent-color);
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--accent-color);
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: var(--footer-text);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .social-links a:hover {
      background-color: var(--accent-color);
      transform: translateY(-3px);
    }

    .copyright {
      text-align: center;
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.9rem;
    }

    /* Responsividade */
    @media (max-width: 1024px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .checkout-container {
        flex-direction: column;
      }
      
      .checkout-form,
      .order-summary {
        flex: 1 1 100%;
      }
      
      .order-summary {
        position: static;
      }
    }

    @media (max-width: 768px) {
      .nav, .actions {
        display: none;
      }

      .hamburger {
        display: flex;
      }
      
      .progress-step .step-label {
        font-size: 0.7rem;
      }
      
      .step-line {
        width: 50px;
      }
      
      .form-row {
        flex-direction: column;
      }
      
      .payment-methods {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 576px) {
      .footer-container {
        grid-template-columns: 1fr;
      }
      
      .section-title {
        font-size: 1.5rem;
      }
      
      .checkout-progress {
        overflow-x: auto;
      }
    }

        /* Variáveis para cores e fontes */
    :root {
      --background-color-header: #F8EEDB;
      --background-color-body: #FFFFFF;
      --text-color: #333333;
      --link-hover-color: #333333;
      --accent-color: #D4A373;
      --secondary-color: #E9EDC9;
      --dark-accent: #CCD5AE;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --footer-bg: #333333;
      --footer-text: #FFFFFF;
    }

    /* Estilos gerais do corpo da página */
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: var(--background-color-body);
      color: var(--text-color);
      line-height: 1.6;
    }

    /* Estilos do cabeçalho */
    .header {
      width: 100%;
      background-color: var(--background-color-header);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      position: relative;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .logo img {
      height: 60px;
      width: auto;
      vertical-align: middle;
    }

    .nav {
      display: flex;
      gap: 2rem;
    }

    .nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: normal;
      position: relative;
      padding-bottom: 5px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .nav a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: transparent;
      bottom: 0;
      left: 0;
      transition: background-color 0.3s ease;
    }

    .nav a:hover::after {
      background-color: var(--link-hover-color);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-container {
      display: flex;
      align-items: center;
      position: relative;
    }

    .search-container input {
      border: none;
      background-color: transparent;
      font-size: 0.9rem;
      text-transform: uppercase;
      padding-right: 25px;
      outline: none;
      color: var(--text-color);
      width: 180px;
    }

    .search-container input::placeholder {
      color: var(--text-color);
      opacity: 0.7;
    }

    .search-container .search-icon {
      position: absolute;
      right: 0;
      cursor: pointer;
    }

    .login-link img, .cart-link img {
      height: 40px;
      width: auto;
      vertical-align: middle;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 100;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--text-color);
      transition: all 0.3s ease;
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--background-color-header);
      z-index: 90;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: flex;
    }

    .mobile-nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: bold;
      font-size: 1.2rem;
      text-transform: uppercase;
    }

    .mobile-actions {
      display: none;
      margin-top: 2rem;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .mobile-actions.active {
      display: flex;
    }

    /* Estilos do Rodapé */
    .footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
      padding: 3rem 0 1rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .footer-column h3 {
      font-size: 1.2rem;
      margin-top: 0;
      margin-bottom: 1.5rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column li {
      margin-bottom: 0.8rem;
    }

    .footer-column a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-column a:hover {
      color: var(--accent-color);
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 1rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: rgba(255,255,255,0.1);
      border-radius: 50%;
      transition: background-color 0.3s;
    }

    .social-links a:hover {
      background-color: var(--accent-color);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 2rem auto 0;
      padding: 1.5rem 1rem 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.7);
    }

    /* Hamburger ativo */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Estilos específicos para a página de Termos e Condições */
    .terms-container {
      max-width: 1000px;
      margin: 3rem auto;
      padding: 0 1.5rem;
    }

    .terms-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .terms-title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      font-weight: 600;
      color: var(--text-color);
    }

    .terms-subtitle {
      font-size: 1.1rem;
      color: #666;
      max-width: 700px;
      margin: 0 auto;
    }

    .terms-section {
      margin-bottom: 2.5rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--medium-gray);
    }

    .terms-section:last-child {
      border-bottom: none;
    }

    .section-title {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: var(--accent-color);
      font-weight: 600;
    }

    .terms-content {
      color: #444;
    }

    .terms-content p {
      margin-bottom: 1rem;
    }

    .terms-content ul {
      padding-left: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .terms-content li {
      margin-bottom: 0.7rem;
    }

    .terms-content strong {
      color: var(--text-color);
    }

    .terms-update {
      text-align: center;
      font-size: 0.9rem;
      color: #777;
      margin-top: 3rem;
      font-style: italic;
    }

    .terms-action {
      background-color: var(--light-gray);
      border-radius: 8px;
      padding: 2rem;
      text-align: center;
      margin: 3rem 0;
    }

    .terms-action p {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
    }

    .action-btn {
      display: inline-block;
      background-color: var(--accent-color);
      color: white;
      padding: 0.8rem 2rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 500;
      transition: background-color 0.3s;
    }

    .action-btn:hover {
      background-color: var(--dark-accent);
    }

    .accordion-terms {
      margin: 1.5rem 0;
    }

    .accordion-item {
      border: 1px solid var(--medium-gray);
      border-radius: 4px;
      margin-bottom: 1rem;
      overflow: hidden;
    }

    .accordion-header {
      background-color: var(--light-gray);
      padding: 1rem 1.5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s;
    }

    .accordion-header:hover {
      background-color: var(--medium-gray);
    }

    .accordion-header h3 {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 500;
    }

    .accordion-icon {
      transition: transform 0.3s;
    }

    .accordion-content {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .accordion-item.active .accordion-content {
      max-height: 1000px;
      padding: 1.5rem;
    }

    .accordion-item.active .accordion-icon {
      transform: rotate(180deg);
    }

    .table-of-contents {
      background-color: var(--light-gray);
      padding: 1.5rem 2rem;
      border-radius: 8px;
      margin-bottom: 3rem;
    }

    .table-of-contents h3 {
      margin-top: 0;
      margin-bottom: 1rem;
      font-size: 1.2rem;
      color: var(--accent-color);
    }

    .table-of-contents ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .table-of-contents li {
      margin-bottom: 0.7rem;
    }

    .table-of-contents a {
      color: var(--text-color);
      text-decoration: none;
      transition: color 0.3s;
      display: flex;
      align-items: center;
    }

    .table-of-contents a:hover {
      color: var(--accent-color);
    }

    .table-of-contents a::before {
      content: "•";
      margin-right: 0.5rem;
      color: var(--accent-color);
    }

    /* Responsividade */
    @media (max-width: 1024px) {
      .nav {
        gap: 1.5rem;
      }
      
      .nav a {
        font-size: 0.9rem;
      }
      
      .search-container input {
        width: 150px;
      }

      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav,
      .actions {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .logo img {
        height: 45px;
      }

      .terms-title {
        font-size: 2rem;
      }

      .section-title {
        font-size: 1.3rem;
      }
    }

    @media (max-width: 576px) {
      .header-container {
        padding: 0 0.5rem;
      }
      
      .logo img {
        height: 35px;
      }
      
      .search-container input {
        width: 120px;
        font-size: 0.8rem;
      }

      .footer-container {
        grid-template-columns: 1fr;
      }

      .terms-title {
        font-size: 1.8rem;
      }

      .terms-subtitle {
        font-size: 1rem;
      }

      .section-title {
        font-size: 1.2rem;
      }

      .terms-container {
        padding: 0 1rem;
        margin: 2rem auto;
      }

      .accordion-header h3 {
        font-size: 1rem;
      }
    }

        /* Variáveis para cores e fontes */
    :root {
      --background-color-header: #F8EEDB;
      --background-color-body: #FFFFFF;
      --text-color: #333333;
      --link-hover-color: #333333;
      --accent-color: #D4A373;
      --secondary-color: #E9EDC9;
      --dark-accent: #CCD5AE;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --footer-bg: #333333;
      --footer-text: #FFFFFF;
    }

    /* Estilos gerais do corpo da página */
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: var(--background-color-body);
      color: var(--text-color);
      line-height: 1.6;
    }

    /* Estilos do cabeçalho */
    .header {
      width: 100%;
      background-color: var(--background-color-header);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      position: relative;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .logo img {
      height: 60px;
      width: auto;
      vertical-align: middle;
    }

    .nav {
      display: flex;
      gap: 2rem;
    }

    .nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: normal;
      position: relative;
      padding-bottom: 5px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .nav a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: transparent;
      bottom: 0;
      left: 0;
      transition: background-color 0.3s ease;
    }

    .nav a:hover::after {
      background-color: var(--link-hover-color);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-container {
      display: flex;
      align-items: center;
      position: relative;
    }

    .search-container input {
      border: none;
      background-color: transparent;
      font-size: 0.9rem;
      text-transform: uppercase;
      padding-right: 25px;
      outline: none;
      color: var(--text-color);
      width: 180px;
    }

    .search-container input::placeholder {
      color: var(--text-color);
      opacity: 0.7;
    }

    .search-container .search-icon {
      position: absolute;
      right: 0;
      cursor: pointer;
    }

    .login-link img, .cart-link img {
      height: 40px;
      width: auto;
      vertical-align: middle;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 100;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--text-color);
      transition: all 0.3s ease;
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--background-color-header);
      z-index: 90;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: flex;
    }

    .mobile-nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: bold;
      font-size: 1.2rem;
      text-transform: uppercase;
    }

    .mobile-actions {
      display: none;
      margin-top: 2rem;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .mobile-actions.active {
      display: flex;
    }

    /* Estilos do Rodapé */
    .footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
      padding: 3rem 0 1rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .footer-column h3 {
      font-size: 1.2rem;
      margin-top: 0;
      margin-bottom: 1.5rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column li {
      margin-bottom: 0.8rem;
    }

    .footer-column a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-column a:hover {
      color: var(--accent-color);
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 1rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: rgba(255,255,255,0.1);
      border-radius: 50%;
      transition: background-color 0.3s;
    }

    .social-links a:hover {
      background-color: var(--accent-color);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 2rem auto 0;
      padding: 1.5rem 1rem 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.7);
    }

    /* Hamburger ativo */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Estilos específicos para a página de Política de Privacidade */
    .privacy-container {
      max-width: 1000px;
      margin: 3rem auto;
      padding: 0 1.5rem;
    }

    .privacy-header {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
    }

    .privacy-header::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--accent-color);
    }

    .privacy-title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      font-weight: 600;
      color: var(--text-color);
    }

    .privacy-subtitle {
      font-size: 1.1rem;
      color: #666;
      max-width: 700px;
      margin: 0 auto;
    }

    .privacy-section {
      margin-bottom: 2.5rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--medium-gray);
    }

    .privacy-section:last-child {
      border-bottom: none;
    }

    .section-title {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: var(--accent-color);
      font-weight: 600;
      position: relative;
      padding-left: 1rem;
    }

    .section-title::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background-color: var(--accent-color);
      border-radius: 2px;
    }

    .privacy-content {
      color: #444;
    }

    .privacy-content p {
      margin-bottom: 1rem;
    }

    .privacy-content ul, .privacy-content ol {
      padding-left: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .privacy-content li {
      margin-bottom: 0.7rem;
    }

    .privacy-content strong {
      color: var(--text-color);
    }

    .privacy-content em {
      font-style: italic;
      color: #555;
    }

    .privacy-update {
      text-align: center;
      font-size: 0.9rem;
      color: #777;
      margin-top: 3rem;
      font-style: italic;
    }

    .privacy-action {
      background-color: var(--light-gray);
      border-radius: 8px;
      padding: 2rem;
      text-align: center;
      margin: 3rem 0;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }

    .privacy-action p {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
    }

    .action-btn {
      display: inline-block;
      background-color: var(--accent-color);
      color: white;
      padding: 0.8rem 2rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .action-btn:hover {
      background-color: var(--dark-accent);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .table-of-contents {
      background-color: var(--light-gray);
      padding: 1.5rem 2rem;
      border-radius: 8px;
      margin-bottom: 3rem;
      box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    }

    .table-of-contents h3 {
      margin-top: 0;
      margin-bottom: 1rem;
      font-size: 1.2rem;
      color: var(--accent-color);
    }

    .table-of-contents ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 0.5rem 1.5rem;
    }

    .table-of-contents li {
      margin-bottom: 0.7rem;
    }

    .table-of-contents a {
      color: var(--text-color);
      text-decoration: none;
      transition: all 0.3s;
      display: flex;
      align-items: center;
    }

    .table-of-contents a:hover {
      color: var(--accent-color);
      transform: translateX(5px);
    }

    .table-of-contents a::before {
      content: "•";
      margin-right: 0.5rem;
      color: var(--accent-color);
    }

    .highlight-box {
      background-color: var(--secondary-color);
      border-left: 4px solid var(--accent-color);
      padding: 1.5rem;
      margin: 1.5rem 0;
      border-radius: 0 4px 4px 0;
    }

    .highlight-box h4 {
      margin-top: 0;
      color: var(--text-color);
      font-size: 1.1rem;
    }

    .highlight-box p:last-child {
      margin-bottom: 0;
    }

    /* Responsividade */
    @media (max-width: 1024px) {
      .nav {
        gap: 1.5rem;
      }
      
      .nav a {
        font-size: 0.9rem;
      }
      
      .search-container input {
        width: 150px;
      }

      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }

      .table-of-contents ul {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .nav,
      .actions {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .logo img {
        height: 45px;
      }

      .privacy-title {
        font-size: 2rem;
      }

      .section-title {
        font-size: 1.3rem;
      }

      .table-of-contents ul {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 576px) {
      .header-container {
        padding: 0 0.5rem;
      }
      
      .logo img {
        height: 35px;
      }
      
      .search-container input {
        width: 120px;
        font-size: 0.8rem;
      }

      .footer-container {
        grid-template-columns: 1fr;
      }

      .privacy-title {
        font-size: 1.8rem;
      }

      .privacy-subtitle {
        font-size: 1rem;
      }

      .section-title {
        font-size: 1.2rem;
      }

      .privacy-container {
        padding: 0 1rem;
        margin: 2rem auto;
      }
    }

        /* Variáveis para cores e fontes - mantidas iguais */
    :root {
      --background-color-header: #F8EEDB;
      --background-color-body: #FFFFFF;
      --text-color: #333333;
      --link-hover-color: #333333;
      --accent-color: #D4A373;
      --secondary-color: #E9EDC9;
      --dark-accent: #CCD5AE;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --footer-bg: #333333;
      --footer-text: #FFFFFF;
    }

    /* Estilos gerais do corpo da página */
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: var(--background-color-body);
      color: var(--text-color);
      line-height: 1.6;
    }

    /* Estilos do cabeçalho - mantidos iguais */
    .header {
      width: 100%;
      background-color: var(--background-color-header);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      position: relative;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .logo img {
      height: 60px;
      width: auto;
      vertical-align: middle;
    }

    .nav {
      display: flex;
      gap: 2rem;
    }

    .nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: normal;
      position: relative;
      padding-bottom: 5px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .nav a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: transparent;
      bottom: 0;
      left: 0;
      transition: background-color 0.3s ease;
    }

    .nav a:hover::after {
      background-color: var(--link-hover-color);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-container {
      display: flex;
      align-items: center;
      position: relative;
    }

    .search-container input {
      border: none;
      background-color: transparent;
      font-size: 0.9rem;
      text-transform: uppercase;
      padding-right: 25px;
      outline: none;
      color: var(--text-color);
      width: 180px;
    }

    .search-container input::placeholder {
      color: var(--text-color);
      opacity: 0.7;
    }

    .search-container .search-icon {
      position: absolute;
      right: 0;
      cursor: pointer;
    }

    .login-link img, .cart-link img {
      height: 40px;
      width: auto;
      vertical-align: middle;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 100;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--text-color);
      transition: all 0.3s ease;
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--background-color-header);
      z-index: 90;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: flex;
    }

    .mobile-nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: bold;
      font-size: 1.2rem;
      text-transform: uppercase;
    }

    .mobile-actions {
      display: none;
      margin-top: 2rem;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .mobile-actions.active {
      display: flex;
    }

    /* Menu hamburguer ativo */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Rodapé - mantido igual */
    .footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
      padding: 3rem 0 1rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .footer-column h3 {
      font-size: 1.2rem;
      margin-top: 0;
      margin-bottom: 1.5rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column li {
      margin-bottom: 0.8rem;
    }

    .footer-column a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-column a:hover {
      color: var(--accent-color);
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 1rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: rgba(255,255,255,0.1);
      border-radius: 50%;
      transition: background-color 0.3s;
    }

    .social-links a:hover {
      background-color: var(--accent-color);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 2rem auto 0;
      padding: 1.5rem 1rem 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.7);
    }

    /* Banner da página de contato */
    .contact-banner {
      position: relative;
      height: 300px;
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1556742077-0a6b6a4a4ac4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }

    .contact-banner h1 {
      font-size: 3rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 300;
      margin: 0;
    }

    /* Estilos específicos para a página de contato */
    .contact-section {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 0 1rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
    }

    .contact-info {
      padding: 2rem;
      background-color: var(--light-gray);
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .contact-info h2 {
      font-size: 1.8rem;
      margin-top: 0;
      margin-bottom: 1.5rem;
      font-weight: bold;
      color: var(--text-color);
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }

    .contact-info-item i {
      font-size: 1.5rem;
      color: var(--accent-color);
      margin-right: 1rem;
      min-width: 1.5rem;
    }

    .contact-info-text h3 {
      margin: 0 0 0.5rem;
      font-size: 1.1rem;
      color: var(--text-color);
      font-weight: 500;
    }

    .contact-info-text p {
      margin: 0;
      font-size: 1rem;
      color: #666;
    }

    .contact-form-container {
      padding: 2rem;
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .contact-form-container h2 {
      font-size: 1.8rem;
      margin-top: 0;
      margin-bottom: 1.5rem;
      font-weight: 300;
      color: var(--text-color);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
      color: #666;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid var(--medium-gray);
      border-radius: 4px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--accent-color);
    }

    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }

    .contact-submit-btn {
      background-color: var(--accent-color);
      color: white;
      border: none;
      padding: 1rem 2rem;
      border-radius: 4px;
      font-size: 1rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: background-color 0.3s, transform 0.3s;
      align-self: flex-start;
    }

    .contact-submit-btn:hover {
      background-color: var(--dark-accent);
      transform: translateY(-3px);
    }

    /* Mapa de localização */
    .map-section {
      margin-top: 4rem;
    }

    .map-container {
      height: 400px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Seção de FAQ específica para contato */
    .contact-faq {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 2rem;
      background-color: var(--light-gray);
      border-radius: 8px;
    }

    .contact-faq h2 {
      font-size: 1.8rem;
      text-align: center;
      margin-top: 0;
      margin-bottom: 2rem;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-color);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .faq-item {
      background-color: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .faq-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .faq-question {
      padding: 1.5rem;
      cursor: pointer;
      font-weight: 500;
      color: var(--text-color);
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-question::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--accent-color);
    }

    .faq-item.active .faq-question::after {
      content: '-';
    }

    .faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-item.active .faq-answer {
      padding: 0 1.5rem 1.5rem;
      max-height: 1000px;
    }

    /* Seção de redes sociais */
    .social-section {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 0 1rem;
      text-align: center;
    }

    .social-section h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-color);
    }

    .social-section p {
      margin-bottom: 2rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;  /* Aumentado de 60px para 70px */
  height: 70px; /* Aumentado de 60px para 70px */
  background-color: var(--light-gray);
  border-radius: 50%;
  font-size: 1.8rem; /* Aumentado de 1.5rem para 1.8rem */
  transition: all 0.3s ease;
  text-decoration: none; /* Remove a linha embaixo */
}

.social-icon:hover {
  transform: translateY(-5px);
  text-decoration: none; /* Garante que não apareça linha ao passar o mouse */
}

/* Cores específicas para cada rede social */
.social-icon .fa-facebook-f {
  color: #1877F2;
}

.social-icon .fa-instagram {
  color: #E4405F;
}

.social-icon .fa-twitter {
  color: #1DA1F2;
}

.social-icon .fa-pinterest-p {
  color: #BD081C;
}

.social-icon .fa-youtube {
  color: #FF0000;
}

.social-icon .fa-tiktok {
  color: #000000;
}

/* Modificação para os ícones no rodapé */
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;  /* Aumentado de 40px para 50px */
  height: 50px; /* Aumentado de 40px para 50px */
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background-color 0.3s;
  text-decoration: none; /* Remove a linha embaixo */
  font-size: 1.3rem; /* Aumentado o tamanho do ícone */
}

.social-links a:hover {
  background-color: rgba(255,255,255,0.2);
  text-decoration: none; /* Garante que não apareça linha ao passar o mouse */
}

.social-links .fa-facebook-f {
  color: #1877F2;
}

.social-links .fa-instagram {
  color: #E4405F;
}

.social-links .fa-twitter {
  color: #1DA1F2;
}

.social-links .fa-pinterest-p {
  color: #BD081C;
}

/* Garantir que todos os links não tenham sublinhado */
a {
  text-decoration: none;
}


    /* Animações */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .animate-fade-in {
      animation: fadeIn 1s ease forwards;
      opacity: 0;
    }

    .delay-100 { animation-delay: 100ms; }
    .delay-200 { animation-delay: 200ms; }
    .delay-300 { animation-delay: 300ms; }
    .delay-400 { animation-delay: 400ms; }
    .delay-500 { animation-delay: 500ms; }

    /* Media Queries para Responsividade */
    @media (max-width: 1024px) {
      .nav {
        gap: 1.5rem;
      }
      
      .nav a {
        font-size: 0.9rem;
      }
      
      .search-container input {
        width: 150px;
      }
      
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav,
      .actions {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .logo img {
        height: 45px;
      }
      
      .contact-banner h1 {
        font-size: 2.5rem;
      }
      
      .contact-grid {
        grid-template-columns: 1fr;
      }
      
      .social-icons {
        flex-wrap: wrap;
      }
    }

    @media (max-width: 576px) {
      .header-container {
        padding: 0 0.5rem;
      }
      
      .logo img {
        height: 35px;
      }
      
      .contact-banner h1 {
        font-size: 2rem;
      }
      
      .contact-banner {
        height: 200px;
      }
      
      .contact-info, .contact-form-container {
        padding: 1.5rem;
      }
      
      .footer-container {
        grid-template-columns: 1fr;
      }
    }

      /* Variáveis para cores e fontes */
    :root {
      --background-color-header: #F8EEDB;
      --background-color-body: #FFFFFF;
      --text-color: #333333;
      --link-hover-color: #333333;
      --accent-color: #D4A373;
      --secondary-color: #E9EDC9;
      --dark-accent: #CCD5AE;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --footer-bg: #333333;
      --footer-text: #FFFFFF;
      --product-showcase-bg: #f9f9f9;
    }

    /* Estilos gerais do corpo da página */
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: var(--background-color-body);
      color: var(--text-color);
      line-height: 1.6;
    }

    /* Estilos do cabeçalho */
    .header {
      width: 100%;
      background-color: var(--background-color-header);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      position: relative;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .logo img {
      height: 60px;
      width: auto;
      vertical-align: middle;
    }

    .nav {
      display: flex;
      gap: 2rem;
    }

    .nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: normal;
      position: relative;
      padding-bottom: 5px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .nav a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: transparent;
      bottom: 0;
      left: 0;
      transition: background-color 0.3s ease;
    }

    .nav a:hover::after {
      background-color: var(--link-hover-color);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-container {
      display: flex;
      align-items: center;
      position: relative;
    }

    .search-container input {
      border: none;
      background-color: transparent;
      font-size: 0.9rem;
      text-transform: uppercase;
      padding-right: 25px;
      outline: none;
      color: var(--text-color);
      width: 180px;
    }

    .search-container input::placeholder {
      color: var(--text-color);
      opacity: 0.7;
    }

    .search-container .search-icon {
      position: absolute;
      right: 0;
      cursor: pointer;
    }

    .login-link img, .cart-link img {
      height: 40px;
      width: auto;
      vertical-align: middle;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 100;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--text-color);
      transition: all 0.3s ease;
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--background-color-header);
      z-index: 90;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: flex;
    }

    .mobile-nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: bold;
      font-size: 1.2rem;
      text-transform: uppercase;
    }

    .mobile-actions {
      display: none;
      margin-top: 2rem;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .mobile-actions.active {
      display: flex;
    }

    /* Estilos para a seção de produtos femininos */
    .featured-products {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .products-container {
      width: 100%;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
    }

    .product-card {
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .product-image {
      height: 280px;
      overflow: hidden;
      position: relative;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-card:hover .product-image img {
      transform: scale(1.1);
    }

    .product-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
      color: white;
    }

    .product-tag.new {
      background-color: var(--accent-color);
    }

    .product-tag.hot {
      background-color: #FF5722;
    }

    .product-tag.sale {
      background-color: #E91E63;
    }

    .product-actions {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      padding: 10px 0;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }

    .product-card:hover .product-actions {
      transform: translateY(0);
    }

    .action-btn {
      background: none;
      border: none;
      color: white;
      font-size: 1.2rem;
      margin: 0 10px;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .action-btn:hover {
      color: var(--accent-color);
    }

    .product-info {
      padding: 20px;
    }

    .product-title {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: var(--text-color);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-weight: bold;
    }

    .product-price {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .old-price {
      color: #999;
      text-decoration: line-through;
      margin-right: 10px;
      font-size: 1.5rem !important;
    }

    .current-price {
      color: var(--accent-color);
      font-weight: 700;
      font-size: 1.2rem;
    }

    .product-rating {
      color: #FFD700;
      font-size: 0.9rem;
    }

    .product-rating span {
      color: #777;
      margin-left: 5px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
      font-size: 2rem;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 50px;
      height: 3px;
      background-color: var(--accent-color);
      margin: 0.5rem auto;
    }

    /* Media Queries para responsividade */
    @media (max-width: 1024px) {
      .products-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav, .actions {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .products-grid {
        grid-template-columns: 1fr;
      }
    }

        /* Variáveis para cores e fontes - mantidas iguais */
    :root {
      --background-color-header: #F8EEDB;
      --background-color-body: #FFFFFF;
      --text-color: #333333;
      --link-hover-color: #333333;
      --accent-color: #D4A373;
      --secondary-color: #E9EDC9;
      --dark-accent: #CCD5AE;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --footer-bg: #333333;
      --footer-text: #FFFFFF;
    }

    /* Estilos gerais do corpo da página */
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: var(--background-color-body);
      color: var(--text-color);
      line-height: 1.6;
    }

    /* Estilos do cabeçalho - mantidos iguais */
    .header {
      width: 100%;
      background-color: var(--background-color-header);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      position: relative;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .logo img {
      height: 60px;
      width: auto;
      vertical-align: middle;
    }

    .nav {
      display: flex;
      gap: 2rem;
    }

    .nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: normal;
      position: relative;
      padding-bottom: 5px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .nav a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: transparent;
      bottom: 0;
      left: 0;
      transition: background-color 0.3s ease;
    }

    .nav a:hover::after {
      background-color: var(--link-hover-color);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-container {
      display: flex;
      align-items: center;
      position: relative;
    }

    .search-container input {
      border: none;
      background-color: transparent;
      font-size: 0.9rem;
      text-transform: uppercase;
      padding-right: 25px;
      outline: none;
      color: var(--text-color);
      width: 180px;
    }

    .search-container input::placeholder {
      color: var(--text-color);
      opacity: 0.7;
    }

    .search-container .search-icon {
      position: absolute;
      right: 0;
      cursor: pointer;
    }

    .login-link img, .cart-link img {
      height: 40px;
      width: auto;
      vertical-align: middle;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 100;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--text-color);
      transition: all 0.3s ease;
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--background-color-header);
      z-index: 90;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: flex;
    }

    .mobile-nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: bold;
      font-size: 1.2rem;
      text-transform: uppercase;
    }

    .mobile-actions {
      display: none;
      margin-top: 2rem;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .mobile-actions.active {
      display: flex;
    }

    /* Menu hamburguer ativo */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Rodapé - mantido igual */
    .footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
      padding: 3rem 0 1rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .footer-column h3 {
      font-size: 1.2rem;
      margin-top: 0;
      margin-bottom: 1.5rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column li {
      margin-bottom: 0.8rem;
    }

    .footer-column a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-column a:hover {
      color: var(--accent-color);
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 1rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: rgba(255,255,255,0.1);
      border-radius: 50%;
      transition: background-color 0.3s;
    }

    .social-links a:hover {
      background-color: var(--accent-color);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 2rem auto 0;
      padding: 1.5rem 1rem 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.7);
    }

    /* Banner da página de contato */
    .contact-banner {
      position: relative;
      height: 300px;
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1556742077-0a6b6a4a4ac4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }

    .contact-banner h1 {
      font-size: 3rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 300;
      margin: 0;
    }

    /* Estilos específicos para a página de contato */
    .contact-section {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 0 1rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
    }

    .contact-info {
      padding: 2rem;
      background-color: var(--light-gray);
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .contact-info h2 {
      font-size: 1.8rem;
      margin-top: 0;
      margin-bottom: 1.5rem;
      font-weight: 300;
      color: var(--text-color);
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }

    .contact-info-item i {
      font-size: 1.5rem;
      color: var(--accent-color);
      margin-right: 1rem;
      min-width: 1.5rem;
    }

    .contact-info-text h3 {
      margin: 0 0 0.5rem;
      font-size: 1.1rem;
      color: var(--text-color);
      font-weight: 500;
    }

    .contact-info-text p {
      margin: 0;
      font-size: 1rem;
      color: #666;
    }

    .contact-form-container {
      padding: 2rem;
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .contact-form-container h2 {
      font-size: 1.8rem;
      margin-top: 0;
      margin-bottom: 1.5rem;
      font-weight: 300;
      color: var(--text-color);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
      color: #666;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid var(--medium-gray);
      border-radius: 4px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--accent-color);
    }

    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }

    .contact-submit-btn {
      background-color: var(--accent-color);
      color: white;
      border: none;
      padding: 1rem 2rem;
      border-radius: 4px;
      font-size: 1rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: background-color 0.3s, transform 0.3s;
      align-self: flex-start;
    }

    .contact-submit-btn:hover {
      background-color: var(--dark-accent);
      transform: translateY(-3px);
    }

    /* Mapa de localização */
    .map-section {
      margin-top: 4rem;
    }

    .map-container {
      height: 400px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Seção de FAQ específica para contato */
    .contact-faq {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 2rem;
      background-color: var(--light-gray);
      border-radius: 8px;
    }

    .contact-faq h2 {
      font-size: 1.8rem;
      text-align: center;
      margin-top: 0;
      margin-bottom: 2rem;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-color);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .faq-item {
      background-color: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .faq-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .faq-question {
      padding: 1.5rem;
      cursor: pointer;
      font-weight: 500;
      color: var(--text-color);
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-question::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--accent-color);
    }

    .faq-item.active .faq-question::after {
      content: '-';
    }

    .faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-item.active .faq-answer {
      padding: 0 1.5rem 1.5rem;
      max-height: 1000px;
    }

    /* Seção de redes sociais */
    .social-section {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 0 1rem;
      text-align: center;
    }

    .social-section h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-color);
    }

    .social-section p {
      margin-bottom: 2rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;  /* Aumentado de 60px para 70px */
  height: 70px; /* Aumentado de 60px para 70px */
  background-color: var(--light-gray);
  border-radius: 50%;
  font-size: 1.8rem; /* Aumentado de 1.5rem para 1.8rem */
  transition: all 0.3s ease;
  text-decoration: none; /* Remove a linha embaixo */
}

.social-icon:hover {
  transform: translateY(-5px);
  text-decoration: none; /* Garante que não apareça linha ao passar o mouse */
}

/* Cores específicas para cada rede social */
.social-icon .fa-facebook-f {
  color: #1877F2;
}

.social-icon .fa-instagram {
  color: #E4405F;
}

.social-icon .fa-twitter {
  color: #1DA1F2;
}

.social-icon .fa-pinterest-p {
  color: #BD081C;
}

.social-icon .fa-youtube {
  color: #FF0000;
}

.social-icon .fa-tiktok {
  color: #000000;
}

/* Modificação para os ícones no rodapé */
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;  /* Aumentado de 40px para 50px */
  height: 50px; /* Aumentado de 40px para 50px */
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background-color 0.3s;
  text-decoration: none; /* Remove a linha embaixo */
  font-size: 1.3rem; /* Aumentado o tamanho do ícone */
}

.social-links a:hover {
  background-color: rgba(255,255,255,0.2);
  text-decoration: none; /* Garante que não apareça linha ao passar o mouse */
}

.social-links .fa-facebook-f {
  color: #1877F2;
}

.social-links .fa-instagram {
  color: #E4405F;
}

.social-links .fa-twitter {
  color: #1DA1F2;
}

.social-links .fa-pinterest-p {
  color: #BD081C;
}

/* Garantir que todos os links não tenham sublinhado */
a {
  text-decoration: none;
}


    /* Animações */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .animate-fade-in {
      animation: fadeIn 1s ease forwards;
      opacity: 0;
    }

    .delay-100 { animation-delay: 100ms; }
    .delay-200 { animation-delay: 200ms; }
    .delay-300 { animation-delay: 300ms; }
    .delay-400 { animation-delay: 400ms; }
    .delay-500 { animation-delay: 500ms; }

    /* Media Queries para Responsividade */
    @media (max-width: 1024px) {
      .nav {
        gap: 1.5rem;
      }
      
      .nav a {
        font-size: 0.9rem;
      }
      
      .search-container input {
        width: 150px;
      }
      
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav,
      .actions {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .logo img {
        height: 45px;
      }
      
      .contact-banner h1 {
        font-size: 2.5rem;
      }
      
      .contact-grid {
        grid-template-columns: 1fr;
      }
      
      .social-icons {
        flex-wrap: wrap;
      }
    }

    @media (max-width: 576px) {
      .header-container {
        padding: 0 0.5rem;
      }
      
      .logo img {
        height: 35px;
      }
      
      .contact-banner h1 {
        font-size: 2rem;
      }
      
      .contact-banner {
        height: 200px;
      }
      
      .contact-info, .contact-form-container {
        padding: 1.5rem;
      }
      
      .footer-container {
        grid-template-columns: 1fr;
      }
    }

        /* Variáveis para cores e fontes */
    :root {
      --background-color-header: #F8EEDB;
      --background-color-body: #FFFFFF;
      --text-color: #333333;
      --link-hover-color: #333333;
      --accent-color: #D4A373;
      --secondary-color: #E9EDC9;
      --dark-accent: #CCD5AE;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --footer-bg: #333333;
      --footer-text: #FFFFFF;
    }

    /* Estilos gerais do corpo da página */
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: var(--background-color-body);
      color: var(--text-color);
      line-height: 1.6;
    }

    /* Estilos do cabeçalho */
    .header {
      width: 100%;
      background-color: var(--background-color-header);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      position: relative;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .logo img {
      height: 60px;
      width: auto;
      vertical-align: middle;
    }

    .nav {
      display: flex;
      gap: 2rem;
    }

    .nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: normal;
      position: relative;
      padding-bottom: 5px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .nav a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: transparent;
      bottom: 0;
      left: 0;
      transition: background-color 0.3s ease;
    }

    .nav a:hover::after {
      background-color: var(--link-hover-color);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-container {
      display: flex;
      align-items: center;
      position: relative;
    }

    .search-container input {
      border: none;
      background-color: transparent;
      font-size: 0.9rem;
      text-transform: uppercase;
      padding-right: 25px;
      outline: none;
      color: var(--text-color);
      width: 180px;
    }

    .search-container input::placeholder {
      color: var(--text-color);
      opacity: 0.7;
    }

    .search-container .search-icon {
      position: absolute;
      right: 0;
      cursor: pointer;
    }

    .login-link img, .cart-link img {
      height: 40px;
      width: auto;
      vertical-align: middle;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 100;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--text-color);
      transition: all 0.3s ease;
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--background-color-header);
      z-index: 90;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: flex;
    }

    .mobile-nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: bold;
      font-size: 1.2rem;
      text-transform: uppercase;
    }

    .mobile-actions {
      display: none;
      margin-top: 2rem;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .mobile-actions.active {
      display: flex;
    }

    /* Estilos do Rodapé */
    .footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
      padding: 3rem 0 1rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .footer-column h3 {
      font-size: 1.2rem;
      margin-top: 0;
      margin-bottom: 1.5rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column li {
      margin-bottom: 0.8rem;
    }

    .footer-column a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-column a:hover {
      color: var(--accent-color);
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 1rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: rgba(255,255,255,0.1);
      border-radius: 50%;
      transition: background-color 0.3s;
    }

    .social-links a:hover {
      background-color: var(--accent-color);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 2rem auto 0;
      padding: 1.5rem 1rem 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.7);
    }

    /* Hamburger ativo */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Estilos específicos para a página de Termos e Condições */
    .terms-container {
      max-width: 1000px;
      margin: 3rem auto;
      padding: 0 1.5rem;
    }

    .terms-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .terms-title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      font-weight: 600;
      color: var(--text-color);
    }

    .terms-subtitle {
      font-size: 1.1rem;
      color: #666;
      max-width: 700px;
      margin: 0 auto;
    }

    .terms-section {
      margin-bottom: 2.5rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--medium-gray);
    }

    .terms-section:last-child {
      border-bottom: none;
    }

    .section-title {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: var(--accent-color);
      font-weight: 600;
    }

    .terms-content {
      color: #444;
    }

    .terms-content p {
      margin-bottom: 1rem;
    }

    .terms-content ul {
      padding-left: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .terms-content li {
      margin-bottom: 0.7rem;
    }

    .terms-content strong {
      color: var(--text-color);
    }

    .terms-update {
      text-align: center;
      font-size: 0.9rem;
      color: #777;
      margin-top: 3rem;
      font-style: italic;
    }

    .terms-action {
      background-color: var(--light-gray);
      border-radius: 8px;
      padding: 2rem;
      text-align: center;
      margin: 3rem 0;
    }

    .terms-action p {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
    }

    .action-btn {
      display: inline-block;
      background-color: var(--accent-color);
      color: white;
      padding: 0.8rem 2rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 500;
      transition: background-color 0.3s;
    }

    .action-btn:hover {
      background-color: var(--dark-accent);
    }

    .accordion-terms {
      margin: 1.5rem 0;
    }

    .accordion-item {
      border: 1px solid var(--medium-gray);
      border-radius: 4px;
      margin-bottom: 1rem;
      overflow: hidden;
    }

    .accordion-header {
      background-color: var(--light-gray);
      padding: 1rem 1.5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s;
    }

    .accordion-header:hover {
      background-color: var(--medium-gray);
    }

    .accordion-header h3 {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 500;
    }

    .accordion-icon {
      transition: transform 0.3s;
    }

    .accordion-content {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .accordion-item.active .accordion-content {
      max-height: 1000px;
      padding: 1.5rem;
    }

    .accordion-item.active .accordion-icon {
      transform: rotate(180deg);
    }

    .table-of-contents {
      background-color: var(--light-gray);
      padding: 1.5rem 2rem;
      border-radius: 8px;
      margin-bottom: 3rem;
    }

    .table-of-contents h3 {
      margin-top: 0;
      margin-bottom: 1rem;
      font-size: 1.2rem;
      color: var(--accent-color);
    }

    .table-of-contents ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .table-of-contents li {
      margin-bottom: 0.7rem;
    }

    .table-of-contents a {
      color: var(--text-color);
      text-decoration: none;
      transition: color 0.3s;
      display: flex;
      align-items: center;
    }

    .table-of-contents a:hover {
      color: var(--accent-color);
    }

    .table-of-contents a::before {
      content: "•";
      margin-right: 0.5rem;
      color: var(--accent-color);
    }

    /* Responsividade */
    @media (max-width: 1024px) {
      .nav {
        gap: 1.5rem;
      }
      
      .nav a {
        font-size: 0.9rem;
      }
      
      .search-container input {
        width: 150px;
      }

      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav,
      .actions {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .logo img {
        height: 45px;
      }

      .terms-title {
        font-size: 2rem;
      }

      .section-title {
        font-size: 1.3rem;
      }
    }

    @media (max-width: 576px) {
      .header-container {
        padding: 0 0.5rem;
      }
      
      .logo img {
        height: 35px;
      }
      
      .search-container input {
        width: 120px;
        font-size: 0.8rem;
      }

      .footer-container {
        grid-template-columns: 1fr;
      }

      .terms-title {
        font-size: 1.8rem;
      }

      .terms-subtitle {
        font-size: 1rem;
      }

      .section-title {
        font-size: 1.2rem;
      }

      .terms-container {
        padding: 0 1rem;
        margin: 2rem auto;
      }

      .accordion-header h3 {
        font-size: 1rem;
      }
    }
    
        /* Variáveis para cores e fontes */
    :root {
      --background-color-header: #F8EEDB;
      --background-color-body: #FFFFFF;
      --text-color: #333333;
      --link-hover-color: #333333;
      --accent-color: #D4A373;
      --secondary-color: #E9EDC9;
      --dark-accent: #CCD5AE;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --footer-bg: #333333;
      --footer-text: #FFFFFF;
      --product-showcase-bg: #f9f9f9;
      --success-color: #4CAF50;
      --error-color: #f44336;
    }

    /* Estilos gerais do corpo da página */
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: var(--background-color-body);
      color: var(--text-color);
      line-height: 1.6;
    }

    /* Estilos do cabeçalho */
    .header {
      width: 100%;
      background-color: var(--background-color-header);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      position: relative;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .logo img {
      height: 60px;
      width: auto;
      vertical-align: middle;
    }

    .nav {
      display: flex;
      gap: 2rem;
    }

    .nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: normal;
      position: relative;
      padding-bottom: 5px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .nav a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: transparent;
      bottom: 0;
      left: 0;
      transition: background-color 0.3s ease;
    }

    .nav a:hover::after {
      background-color: var(--link-hover-color);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-container {
      display: flex;
      align-items: center;
      position: relative;
    }

    .search-container input {
      border: none;
      background-color: transparent;
      font-size: 0.9rem;
      text-transform: uppercase;
      padding-right: 25px;
      outline: none;
      color: var(--text-color);
      width: 180px;
    }

    .search-container input::placeholder {
      color: var(--text-color);
      opacity: 0.7;
    }

    .search-container .search-icon {
      position: absolute;
      right: 0;
      cursor: pointer;
    }

    .login-link img, .cart-link img {
      height: 40px;
      width: auto;
      vertical-align: middle;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 100;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--text-color);
      transition: all 0.3s ease;
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--background-color-header);
      z-index: 90;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: flex;
    }

    .mobile-nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: bold;
      font-size: 1.2rem;
      text-transform: uppercase;
    }

    .mobile-actions {
      display: none;
      margin-top: 2rem;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .mobile-actions.active {
      display: flex;
    }

    /* Breadcrumb */
    .breadcrumb {
      max-width: 1200px;
      margin: 2rem auto 0;
      padding: 0 1rem;
    }

    .breadcrumb-list {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: #666;
    }

    .breadcrumb-list a {
      color: #666;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .breadcrumb-list a:hover {
      color: var(--accent-color);
    }

    .breadcrumb-list i {
      font-size: 0.7rem;
    }

    /* Checkout Section */
    .checkout-section {
      max-width: 1200px;
      margin: 2rem auto 3rem;
      padding: 0 1rem;
    }

    .section-title {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 50px;
      height: 3px;
      background-color: var(--accent-color);
      margin: 0.5rem auto;
    }

    /* Progress Steps */
    .checkout-progress {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 3rem;
      padding: 0 1rem;
    }

    .progress-step {
      display: flex;
      align-items: center;
      position: relative;
    }

    .step-circle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: var(--light-gray);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .step-circle.active {
      background-color: var(--accent-color);
      color: white;
    }

    .step-circle.completed {
      background-color: var(--success-color);
      color: white;
    }

    .step-label {
      position: absolute;
      top: 50px;
      white-space: nowrap;
      font-size: 0.85rem;
      color: #666;
      left: 50%;
      transform: translateX(-50%);
    }

    .step-line {
      width: 100px;
      height: 2px;
      background-color: var(--light-gray);
      margin: 0 1rem;
    }

    .step-line.completed {
      background-color: var(--success-color);
    }

    /* Checkout Container */
    .checkout-container {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .checkout-form {
      flex: 1 1 65%;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      padding: 2rem;
    }

    .order-summary {
      flex: 1 1 30%;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      padding: 1.5rem;
      align-self: flex-start;
      position: sticky;
      top: 20px;
    }

    /* Form Sections */
    .form-section {
      margin-bottom: 2.5rem;
    }

    .form-section-title {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--light-gray);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .form-section-title i {
      color: var(--accent-color);
    }

    .form-row {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .form-group {
      flex: 1;
      margin-bottom: 1rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      font-size: 0.9rem;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid var(--medium-gray);
      border-radius: 5px;
      font-size: 0.95rem;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--accent-color);
    }

    .form-group.error input {
      border-color: var(--error-color);
    }

    .error-message {
      color: var(--error-color);
      font-size: 0.8rem;
      margin-top: 0.3rem;
      display: none;
    }

    .form-group.error .error-message {
      display: block;
    }

    /* Payment Methods */
    .payment-methods {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .payment-method {
      position: relative;
      border: 2px solid var(--medium-gray);
      border-radius: 8px;
      padding: 1rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .payment-method:hover {
      border-color: var(--accent-color);
    }

    .payment-method input[type="radio"] {
      position: absolute;
      opacity: 0;
    }

    .payment-method input[type="radio"]:checked + .payment-label {
      color: var(--accent-color);
    }

    .payment-method input[type="radio"]:checked ~ .payment-icon {
      color: var(--accent-color);
    }

    .payment-method.selected {
      border-color: var(--accent-color);
      background-color: rgba(212, 163, 115, 0.05);
    }

    .payment-icon {
      font-size: 2rem;
      margin-bottom: 0.5rem;
      color: #666;
    }

    .payment-label {
      font-size: 0.9rem;
      font-weight: 500;
    }

    /* Card Details */
    .card-details {
      display: none;
      animation: slideDown 0.3s ease;
    }

    .card-details.active {
      display: block;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .card-icons {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .card-icons i {
      font-size: 1.5rem;
      color: #666;
    }

    /* Checkbox */
    .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin: 1rem 0;
    }

    .checkbox-group input[type="checkbox"] {
      margin-top: 0.2rem;
    }

    .checkbox-group label {
      font-size: 0.9rem;
      line-height: 1.4;
    }

    /* Order Summary Styles */
    .summary-header {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--light-gray);
    }

    .summary-items {
      max-height: 300px;
      overflow-y: auto;
      margin-bottom: 1.5rem;
    }

    .summary-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--light-gray);
    }

    .summary-item:last-child {
      border-bottom: none;
    }

    .summary-item-image {
      width: 60px;
      height: 60px;
      overflow: hidden;
      border-radius: 5px;
    }

    .summary-item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .summary-item-details {
      flex: 1;
    }

    .summary-item-title {
      font-size: 0.9rem;
      margin-bottom: 0.3rem;
      font-weight: 500;
    }

    .summary-item-variant {
      font-size: 0.8rem;
      color: #666;
    }

    .summary-item-price {
      font-weight: 600;
      color: var(--accent-color);
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0.8rem;
      font-size: 0.95rem;
    }

    .summary-label {
      color: #666;
    }

    .summary-value {
      font-weight: 600;
    }

    .summary-total {
      font-size: 1.2rem;
      font-weight: 700;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 2px solid var(--light-gray);
    }

    .promo-code {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--light-gray);
    }

    .promo-input-group {
      display: flex;
      gap: 0.5rem;
    }

    .promo-input {
      flex: 1;
      padding: 0.8rem;
      border: 1px solid var(--medium-gray);
      border-radius: 5px;
      font-size: 0.9rem;
    }

    .promo-button {
      padding: 0.8rem 1.5rem;
      background-color: var(--light-gray);
      border: none;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .promo-button:hover {
      background-color: var(--medium-gray);
    }

    /* Buttons */
    .checkout-buttons {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }

    .btn {
      padding: 1rem 2rem;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .btn-secondary {
      background-color: var(--light-gray);
      color: var(--text-color);
    }

    .btn-secondary:hover {
      background-color: var(--medium-gray);
    }

    .btn-primary {
      background-color: var(--accent-color);
      color: white;
      flex: 1;
    }

    .btn-primary:hover {
      background-color: var(--dark-accent);
    }

    .btn-primary:disabled {
      background-color: var(--medium-gray);
      cursor: not-allowed;
    }

    /* Security Badge */
    .security-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
      padding: 1rem;
      background-color: var(--light-gray);
      border-radius: 5px;
      font-size: 0.9rem;
    }

    .security-badge i {
      color: var(--success-color);
      font-size: 1.2rem;
    }

    /* Footer */
    .footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
      padding: 3rem 0 1rem;
      margin-top: 4rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .footer-column h3 {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.5rem;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 30px;
      height: 2px;
      background-color: var(--accent-color);
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--accent-color);
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: var(--footer-text);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .social-links a:hover {
      background-color: var(--accent-color);
      transform: translateY(-3px);
    }

    .copyright {
      text-align: center;
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.9rem;
    }

    /* Responsividade */
    @media (max-width: 1024px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .checkout-container {
        flex-direction: column;
      }
      
      .checkout-form,
      .order-summary {
        flex: 1 1 100%;
      }
      
      .order-summary {
        position: static;
      }
    }

    @media (max-width: 768px) {
      .nav, .actions {
        display: none;
      }

      .hamburger {
        display: flex;
      }
      
      .progress-step .step-label {
        font-size: 0.7rem;
      }
      
      .step-line {
        width: 50px;
      }
      
      .form-row {
        flex-direction: column;
      }
      
      .payment-methods {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 576px) {
      .footer-container {
        grid-template-columns: 1fr;
      }
      
      .section-title {
        font-size: 1.5rem;
      }
      
      .checkout-progress {
        overflow-x: auto;
      }
    }

        /* Variáveis para cores e fontes */
    :root {
      --background-color-header: #F8EEDB;
      --background-color-body: #FFFFFF;
      --text-color: #333333;
      --link-hover-color: #333333;
      --accent-color: #D4A373;
      --secondary-color: #E9EDC9;
      --dark-accent: #CCD5AE;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --footer-bg: #333333;
      --footer-text: #FFFFFF;
      --product-showcase-bg: #f9f9f9;
    }

    /* Estilos gerais do corpo da página */
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: var(--background-color-body);
      color: var(--text-color);
      line-height: 1.6;
    }

    /* Estilos do cabeçalho */
    .header {
      width: 100%;
      background-color: var(--background-color-header);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      position: relative;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .logo img {
      height: 60px;
      width: auto;
      vertical-align: middle;
    }

    .nav {
      display: flex;
      gap: 2rem;
    }

    .nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: normal;
      position: relative;
      padding-bottom: 5px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .nav a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: transparent;
      bottom: 0;
      left: 0;
      transition: background-color 0.3s ease;
    }

    .nav a:hover::after {
      background-color: var(--link-hover-color);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-container {
      display: flex;
      align-items: center;
      position: relative;
    }

    .search-container input {
      border: none;
      background-color: transparent;
      font-size: 0.9rem;
      text-transform: uppercase;
      padding-right: 25px;
      outline: none;
      color: var(--text-color);
      width: 180px;
    }

    .search-container input::placeholder {
      color: var(--text-color);
      opacity: 0.7;
    }

    .search-container .search-icon {
      position: absolute;
      right: 0;
      cursor: pointer;
    }

    .login-link img, .cart-link img {
      height: 40px;
      width: auto;
      vertical-align: middle;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 100;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--text-color);
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(11px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
      transform: translateY(-11px) rotate(-45deg);
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--background-color-header);
      z-index: 90;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: flex;
    }

    .mobile-nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: bold;
      font-size: 1.2rem;
      text-transform: uppercase;
    }

    .mobile-actions {
      display: none;
      margin-top: 2rem;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .mobile-actions.active {
      display: flex;
    }

    /* Estilos da página de carrinho */
    .cart-section {
      max-width: 1200px;
      margin: 3rem auto;
      padding: 0 1rem;
    }

    .section-title {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 50px;
      height: 3px;
      background-color: var(--accent-color);
      margin: 0.5rem auto;
    }

    .cart-empty {
      text-align: center;
      padding: 3rem 0;
    }

    .cart-empty i {
      font-size: 4rem;
      color: var(--medium-gray);
      margin-bottom: 1rem;
    }

    .cart-empty p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }

    .btn-primary {
      display: inline-block;
      background-color: var(--accent-color);
      color: white;
      padding: 0.8rem 2rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
      transition: background-color 0.3s ease;
    }

    .btn-primary:hover {
      background-color: var(--dark-accent);
    }

    .cart-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .cart-items {
      flex: 1 1 65%;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .cart-summary {
      flex: 1 1 30%;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      padding: 1.5rem;
      align-self: flex-start;
    }

    .cart-item {
      display: flex;
      padding: 1.5rem;
      border-bottom: 1px solid var(--light-gray);
    }

    .cart-item:last-child {
      border-bottom: none;
    }

    .item-image {
      width: 120px;
      height: 120px;
      overflow: hidden;
      border-radius: 5px;
      margin-right: 1.5rem;
    }

    .item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .item-details {
      flex: 1;
    }

    .item-title {
      font-size: 1.2rem;
      margin: 0 0 0.5rem;
      font-weight: 600;
    }

    .item-variant {
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .item-price {
      font-weight: 600;
      color: var(--accent-color);
      margin-bottom: 1rem;
    }

    .item-quantity {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }

    .quantity-btn {
      width: 30px;
      height: 30px;
      background-color: var(--light-gray);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1rem;
      transition: background-color 0.3s ease;
    }

    .quantity-btn:hover {
      background-color: var(--medium-gray);
    }

    .quantity-input {
      width: 40px;
      text-align: center;
      margin: 0 0.5rem;
      border: 1px solid var(--medium-gray);
      border-radius: 4px;
      padding: 0.3rem 0;
    }

    .item-actions {
      display: flex;
      gap: 1rem;
    }

    .action-link {
      color: black;
      text-decoration: none;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      transition: color 0.3s ease;
      font-weight: 550;
    }

    .action-link i {
      margin-right: 0.3rem;
    }

    .action-link:hover {
      color: var(--accent-color);
    }

    .summary-title {
      font-size: 1.3rem;
      margin-top: 0;
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--light-gray);
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1rem;
    }

    .summary-label {
      color: #666;
    }

    .summary-value {
      font-weight: 600;
    }

    .summary-total {
      font-size: 1.2rem;
      font-weight: 700;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--light-gray);
    }

    .checkout-btn {
      display: block;
      width: 100%;
      background-color: var(--accent-color);
      color: white;
      border: none;
      padding: 1rem;
      border-radius: 5px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      margin-top: 1.5rem;
      transition: background-color 0.3s ease;
    }

    .checkout-btn:hover {
      background-color: var(--dark-accent);
    }

    .payment-options {
      margin-top: 1.5rem;
    }

    .payment-title {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 0.5rem;
    }

    .payment-icons {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .payment-icons i {
      font-size: 1.5rem;
      color: #666;
    }

    .coupon-form {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--light-gray);
    }

    .coupon-input {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid var(--medium-gray);
      border-radius: 5px;
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }

    .coupon-btn {
      width: 100%;
      background-color: var(--light-gray);
      color: var(--text-color);
      border: none;
      padding: 0.8rem;
      border-radius: 5px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .coupon-btn:hover {
      background-color: var(--medium-gray);
    }

    .continue-shopping {
      display: inline-block;
      margin-top: 2rem;
      color: var(--text-color);
      text-decoration: none;
      font-weight: 500;
    }

    .continue-shopping i {
      margin-right: 0.5rem;
    }

    /* Estilos para notificações */
    .notification {
      position: fixed;
      top: 100px;
      right: 20px;
      background-color: #fff;
      padding: 15px 20px;
      border-radius: 5px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 1000;
      animation: slideIn 0.3s ease;
      max-width: 350px;
    }

    .notification-error {
      border-left: 4px solid #dc3545;
      color: #dc3545;
    }

    .notification-warning {
      border-left: 4px solid #ffc107;
      color: #856404;
    }

    .notification-info {
      border-left: 4px solid #17a2b8;
      color: #0c5460;
    }

    .notification-success {
      border-left: 4px solid #28a745;
      color: #155724;
    }

    @keyframes slideIn {
      from {
        transform: translateX(100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    /* Footer */
    .footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
      padding: 3rem 0 1rem;
      margin-top: 5rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .footer-column h3 {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.5rem;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 30px;
      height: 2px;
      background-color: var(--accent-color);
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--accent-color);
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: var(--footer-text);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .social-links a:hover {
      background-color: var(--accent-color);
      transform: translateY(-3px);
    }

    .copyright {
      text-align: center;
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.9rem;
    }

    /* Responsividade */
    @media (max-width: 1024px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav, .actions {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .cart-container {
        flex-direction: column;
      }

      .cart-items, .cart-summary {
        flex: 1 1 100%;
      }
    }

    @media (max-width: 576px) {
      .footer-container {
        grid-template-columns: 1fr;
      }

      .cart-item {
        flex-direction: column;
      }

      .item-image {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 1rem;
      }
    }

      /* Variáveis para cores e fontes */
    :root {
      --background-color-header: #F8EEDB;
      --background-color-body: #FFFFFF;
      --text-color: #333333;
      --link-hover-color: #333333;
      --accent-color: #D4A373;
      --secondary-color: #E9EDC9;
      --dark-accent: #CCD5AE;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --footer-bg: #333333;
      --footer-text: #FFFFFF;
      --product-showcase-bg: #f9f9f9;
    }

    /* Estilos gerais do corpo da página */
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: var(--background-color-body);
      color: var(--text-color);
      line-height: 1.6;
    }

    /* Estilos do cabeçalho */
    .header {
      width: 100%;
      background-color: var(--background-color-header);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      position: relative;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .logo img {
      height: 60px;
      width: auto;
      vertical-align: middle;
    }

    .nav {
      display: flex;
      gap: 2rem;
    }

    .nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: normal;
      position: relative;
      padding-bottom: 5px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .nav a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: transparent;
      bottom: 0;
      left: 0;
      transition: background-color 0.3s ease;
    }

    .nav a:hover::after {
      background-color: var(--link-hover-color);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-container {
      display: flex;
      align-items: center;
      position: relative;
    }

    .search-container input {
      border: none;
      background-color: transparent;
      font-size: 0.9rem;
      text-transform: uppercase;
      padding-right: 25px;
      outline: none;
      color: var(--text-color);
      width: 180px;
    }

    .search-container input::placeholder {
      color: var(--text-color);
      opacity: 0.7;
    }

    .search-container .search-icon {
      position: absolute;
      right: 0;
      cursor: pointer;
    }

    .login-link img, .cart-link img {
      height: 40px;
      width: auto;
      vertical-align: middle;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 100;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--text-color);
      transition: all 0.3s ease;
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--background-color-header);
      z-index: 90;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: flex;
    }

    .mobile-nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: bold;
      font-size: 1.2rem;
      text-transform: uppercase;
    }

    .mobile-actions {
      display: none;
      margin-top: 2rem;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .mobile-actions.active {
      display: flex;
    }

    /* Estilos para a página de produto individual */
    .product-detail-container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }

    .product-gallery {
      flex: 1;
      min-width: 300px;
    }

    .main-image {
      width: 100%;
      height: 550px;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .main-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .main-image img:hover {
      transform: scale(1.05);
    }

    .product-info-container {
      flex: 1;
      min-width: 300px;
    }

    .product-tag {
      display: inline-block;
      padding: 5px 10px;
      font-size: 0.8rem;
      font-weight: 600;
      border-radius: 4px;
      margin-bottom: 15px;
      text-transform: uppercase;
    }

    .product-tag.sale {
      background-color: #FF5722;
      color: white;
    }

    .product-tag.hot {
      background-color: #ff6b6b;
      color: white;
    }

    .product-title {
      font-size: 2.2rem;
      margin: 0 0 15px;
      font-weight: 600;
    }

    .product-rating {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .product-rating i {
      color: #ffc107;
      margin-right: 2px;
    }

    .product-rating span {
      margin-left: 10px;
      color: #777;
      font-size: 0.9rem;
    }

    .product-price {
      margin-bottom: 25px;
    }

    .old-price {
      text-decoration: line-through;
      color: grey !important;
      font-size: 1.2rem;
      margin-right: 10px;
    }

    .current-price {
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--accent-color);
    }

    .product-description {
      margin-bottom: 30px;
      line-height: 1.8;
      color: black;
      text-align: justify !important;
      font-weight: 440;
    }

    .product-features {
      margin-bottom: 30px;
    }

    .product-features h4 {
      margin-bottom: 10px;
      font-size: 1.1rem;
    }

    .product-features ul {
      padding-left: 20px;
    }

    .product-features li {
      margin-bottom: 8px;
      position: relative;
      font-weight: 580;
    }

    .product-features li::before {
      content: '✓';
      color: var(--accent-color);
      position: absolute;
      left: -20px;
    }

    .product-variants {
      margin-bottom: 30px;
    }

    .variant-title {
      font-size: 1rem;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .color-options {
      display: flex;
      gap: 10px;
    }

    .color-option {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      cursor: pointer;
      border: 2px solid transparent;
      transition: border-color 0.3s ease;
    }

    .color-option.active {
      border-color: var(--accent-color);
    }

    .color-beige {
      background-color: #F5F5DC;
    }

    .color-blue {
      background-color: #87CEEB;
    }

    .color-pink {
      background-color: #FFB6C1;
    }

    .quantity-selector {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
    }

    .quantity-btn {
      width: 40px;
      height: 40px;
      background-color: var(--light-gray);
      border: none;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease;
    }

    .quantity-btn:hover {
      background-color: var(--medium-gray);
    }

    .quantity-input {
      width: 60px;
      height: 40px;
      border: 1px solid var(--light-gray);
      text-align: center;
      font-size: 1rem;
      margin: 0 10px;
    }

    .add-to-cart-btn {
      display: inline-block;
      background-color: var(--accent-color);
      color: white;
      padding: 15px 40px;
      border: none;
      border-radius: 4px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-transform: uppercase;
    }

    .add-to-cart-btn:hover {
      background-color: #c09667;
    }

    /* Seção de produtos relacionados */
    .related-products {
      max-width: 1200px;
      margin: 60px auto;
      padding: 40px 20px;
      background-color: #FFFFFF;
    }

    .related-products h2 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.8rem;
      position: relative;
      padding-bottom: 15px;
    }

    .related-products h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--accent-color);
    }

    .related-products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 30px;
    }

    .product-card {
      background-color: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .product-image {
      position: relative;
      height: 250px;
      overflow: hidden;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-card:hover .product-image img {
      transform: scale(1.05);
    }

    .product-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 5px 10px;
      font-size: 0.7rem;
      font-weight: 600;
      border-radius: 4px;
      z-index: 1;
    }

    .product-tag.new {
      background-color: #4CAF50;
      color: white;
    }

    .product-tag.sale {
      background-color: #FF5722;
      color: white;
    }

    .product-tag.hot {
      background-color: #ff6b6b;
      color: white;
    }

    .product-actions {
      position: absolute;
      right: 10px;
      top: 10px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      opacity: 0;
      transform: translateX(20px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .product-card:hover .product-actions {
      opacity: 1;
      transform: translateX(0);
    }

    .action-btn {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background-color: white;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 3px 5px rgba(0,0,0,0.1);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .action-btn:hover {
      background-color: var(--accent-color);
      transform: scale(1.1);
    }

    .action-btn:hover i {
      color: white;
    }

    .action-btn i {
      color: var(--text-color);
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

    .product-info {
      padding: 20px;
    }

    .product-title {
      font-size: 1rem;
      margin: 0 0 10px;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .product-price {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .old-price {
      text-decoration: line-through;
      color: #999;
      font-size: 0.9rem;
      margin-right: 10px;
    }

    .current-price {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--accent-color);
    }

    .product-rating {
      display: flex;
      align-items: center;
    }

    .product-rating i {
      color: #ffc107;
      font-size: 0.8rem;
      margin-right: 2px;
    }

    .product-rating span {
      margin-left: 5px;
      color: #777;
      font-size: 0.8rem;
    }

    /* Footer */
    footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
      padding: 60px 0 20px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
    }

    .footer-column h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: var(--accent-color);
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 0.9rem;
    }

    .footer-column ul li a:hover {
      color: var(--accent-color);
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      color: var(--footer-text);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .social-links a:hover {
      background-color: var(--accent-color);
      transform: translateY(-3px);
    }

    .copyright {
      text-align: center;
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.9rem;
    }

    /* Media Queries */
    @media (max-width: 992px) {
      .product-detail-container {
        flex-direction: column;
      }

      .main-image {
        height: 400px;
      }
    }

    @media (max-width: 768px) {
      .nav, .actions {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .header-container {
        padding: 0 20px;
      }

      .related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      }
    }

    @media (max-width: 576px) {
      .product-title {
        font-size: 1.8rem;
      }

      .main-image {
        height: 300px;
      }

      .related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      }

      .footer-container {
        grid-template-columns: 1fr;
      }
    }

    /* Estilos para mensagem de adicionado ao carrinho */
    .message-container {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 1000;
      max-width: 300px;
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      padding: 15px;
      transform: translateX(120%);
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .message-container.show {
      transform: translateX(0);
    }

    .message-container i {
      font-size: 1.5rem;
      color: var(--accent-color);
    }

    .message-content {
      flex: 1;
    }

    .message-content p {
      margin: 0 0 10px;
      font-size: 0.9rem;
    }

    .view-cart-btn {
      background-color: var(--accent-color);
      color: white;
      border: none;
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 0.8rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .view-cart-btn:hover {
      background-color: #c09667;
    }

       /* Variáveis para cores e fontes */
    :root {
      --background-color-header: #F8EEDB;
      --background-color-body: #FFFFFF;
      --text-color: #333333;
      --link-hover-color: #333333;
      --accent-color: #D4A373;
      --secondary-color: #E9EDC9;
      --dark-accent: #CCD5AE;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --footer-bg: #333333;
      --footer-text: #FFFFFF;
      --product-showcase-bg: #f9f9f9;
    }

    /* Estilos gerais do corpo da página */
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: var(--background-color-body);
      color: var(--text-color);
      line-height: 1.6;
    }

    /* Estilos do cabeçalho */
    .header {
      width: 100%;
      background-color: var(--background-color-header);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      position: relative;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .logo img {
      height: 60px;
      width: auto;
      vertical-align: middle;
    }

    .nav {
      display: flex;
      gap: 2rem;
    }

    .nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: normal;
      position: relative;
      padding-bottom: 5px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .nav a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: transparent;
      bottom: 0;
      left: 0;
      transition: background-color 0.3s ease;
    }

    .nav a:hover::after {
      background-color: var(--link-hover-color);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-container {
      display: flex;
      align-items: center;
      position: relative;
    }

    .search-container input {
      border: none;
      background-color: transparent;
      font-size: 0.9rem;
      text-transform: uppercase;
      padding-right: 25px;
      outline: none;
      color: var(--text-color);
      width: 180px;
    }

    .search-container input::placeholder {
      color: var(--text-color);
      opacity: 0.7;
    }

    .search-container .search-icon {
      position: absolute;
      right: 0;
      cursor: pointer;
    }

    .login-link img, .cart-link img {
      height: 40px;
      width: auto;
      vertical-align: middle;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 100;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--text-color);
      transition: all 0.3s ease;
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--background-color-header);
      z-index: 90;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: flex;
    }

    .mobile-nav a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: bold;
      font-size: 1.2rem;
      text-transform: uppercase;
    }

    .mobile-actions {
      display: none;
      margin-top: 2rem;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .mobile-actions.active {
      display: flex;
    }

    /* Estilos para a página Quem Somos */
    .about-hero {
      position: relative;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background-color: var(--secondary-color);
    }

    .about-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      opacity: 0.8;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 20px;
      max-width: 800px;
      color: white;
    }

    .hero-content h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-weight: bold;
      color: white;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    }

    .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      font-weight: bold;
      line-height: 1.8;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
      font-size: 2rem;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 50px;
      height: 3px;
      background-color: var(--accent-color);
      margin: 0.5rem auto;
    }

    .about-section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about-content {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin-bottom: 60px;
    }

    .about-text {
      flex: 1;
      min-width: 300px;
    }

    .about-text p {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      line-height: 1.8;
 
    }

    .about-image {
      flex: 1;
      min-width: 300px;
      height: 400px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .about-image:hover img {
      transform: scale(1.05);
    }

    .values-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .value-card {
      background-color: var(--light-gray);
      border-radius: 8px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .value-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .value-icon {
      font-size: 2.5rem;
      color: var(--accent-color);
      margin-bottom: 20px;
    }

    .value-title {
      font-size: 1.3rem;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .value-description {
      font-size: 1rem;
      color: #666;
    }

    .team-section {
      background-color: var(--secondary-color);
      padding: 80px 20px;
    }

    .team-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .team-member {
      background-color: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .team-member:hover {
      transform: translateY(-10px);
    }

    .member-photo {
      height: 300px;
      overflow: hidden;
    }

    .member-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .team-member:hover .member-photo img {
      transform: scale(1.1);
    }

    .member-info {
      padding: 20px;
      text-align: center;
    }

    .member-name {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .member-role {
      color: var(--accent-color);
      font-style: italic;
      margin-bottom: 15px;
    }

    .member-social {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .member-social a {
      color: #777;
      transition: color 0.3s ease;
    }

    .member-social a:hover {
      color: var(--accent-color);
    }

    .timeline-section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .timeline {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
    }

    .timeline::after {
      content: '';
      position: absolute;
      width: 6px;
      background-color: var(--medium-gray);
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -3px;
    }

    .timeline-item {
      padding: 10px 40px;
      position: relative;
      width: 50%;
      box-sizing: border-box;
    }

    .timeline-item::after {
      content: '';
      position: absolute;
      width: 25px;
      height: 25px;
      right: -12px;
      top: 15px;
      border-radius: 50%;
      background-color: var(--accent-color);
      z-index: 1;
    }

    .timeline-item.left {
      left: 0;
    }

    .timeline-item.right {
      left: 50%;
    }

    .timeline-item.right::after {
      left: -12px;
    }

    .timeline-content {
      padding: 20px;
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .timeline-year {
      font-weight: 700;
      color: var(--accent-color);
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

    .timeline-event {
      margin-bottom: 10px;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .timeline-description {
      font-size: 1rem;
      color: #666;
    }

    /* Estilo para o rodapé */
    .footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
      padding: 60px 20px 20px;
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      gap: 40px;
    }

    .footer-column {
      flex: 1;
      min-width: 200px;
    }

    .footer-title {
      font-size: 1.2rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 2px;
      background-color: var(--accent-color);
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--accent-color);
    }

    .footer-social {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .footer-social a {
      color: var(--footer-text);
      font-size: 1.5rem;
      transition: color 0.3s ease;
    }

    .footer-social a:hover {
      color: var(--accent-color);
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.9rem;
    }

    /* Media Queries para responsividade */
    @media (max-width: 1024px) {
      .hero-content h1 {
        font-size: 2.5rem;
      }
      
      .timeline::after {
        left: 31px;
      }
      
      .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
      }
      
      .timeline-item::after {
        left: 19px;
        top: 15px;
      }
      
      .timeline-item.right {
        left: 0;
      }
    }

    @media (max-width: 768px) {
      .nav, .actions {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .about-content {
        flex-direction: column;
      }

      .about-image {
        height: 300px;
        order: -1;
      }

      .hero-content h1 {
        font-size: 2rem;
      }
      
      .about-hero {
        height: 400px;
      }
      
      .footer-column {
        flex-basis: 100%;
      }
    }

    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: 1.8rem;
      }
      
      .section-title {
        font-size: 1.5rem;
      }
      
      .about-hero {
        height: 300px;
      }
      
      .team-grid {
        grid-template-columns: 1fr;
      }
    }

    