/* Main Colors */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
}

/* Background and Text Colors */
.bg-brown {
    background-color: var(--primary-color);
}

.text-brown {
    color: var(--primary-color);
}

/* Button Styles */
.btn-brown {
    background-color: var(--primary-color);
    color: white;
    transition: background-color 0.3s;
}

.btn-brown:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s;
    margin: 0 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #f8f7f7c7;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Navbar Styling */
.navbar-brand img {
  height: 50px;
  width: 50px; 
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

/* Product Slider Customization */
.product-slider {
    padding: 0 30px;
}

.slider-item {
    padding: 15px;
}

/* Slick Carousel Custom Styling */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.slick-prev:hover, .slick-next:hover {
    background-color: var(--secondary-color);
}

.slick-prev {
    left: -10px;
}

.slick-next {
    right: -10px;
}

.slick-prev:before, .slick-next:before {
    font-size: 20px;
    opacity: 1;
}

.slick-dots li button:before {
    color: var(--primary-color);
}

.slick-dots li.slick-active button:before {
    color: var(--secondary-color);
}

/* Social Media Icons */
.social-links a {
    margin-left: 15px;
    font-size: 1.2rem;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: #f9f9f9;
    border: none;
    border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-card .card-img-top {
        height: 200px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

/* Base do Footer */
footer {
    background: linear-gradient(to right, #D2691E, #D2691E);
    color: white;
    padding: 2rem 0;
    font-family: 'Roboto', sans-serif;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Grid Layout */
  .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  /* Títulos e Texto */
  h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
  }
  
  h5::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2.5rem;
    height: 2px;
  }
  
  p {
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  /* Links e Listas */
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .space-y-2 > * + * {
    margin-top: 0.5rem;
  }
  
  a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  a:hover {
    color: #ddd6fe;
  }
  
  /* Ícones e Redes Sociais */
  .flex {
    display: flex;
  }
  
  .space-x-4 > * + * {
    margin-left: 1rem;
  }
  
  .items-center {
    align-items: center;
  }
  
  i[class*="fa-"] {
    margin-right: 0.5rem;
  }
  
  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
  }
  
  /* Newsletter */
  input[type="email"] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 100%;
    color: #1f2937;
    font-size: 0.875rem;
  }
  
  input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(216, 180, 254, 0.5);
  }
  
  button {
    background-color: #894208;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #9f6021;
  }
  
  /* Seção de Pagamentos */
  .border-t {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    padding-bottom: 1rem;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .flex-wrap {
    flex-wrap: wrap;
  }
  
  .payment-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
  }
  
  .payment-methods i {
    font-size: 1.5rem;
    opacity: 0.9;
  }
  
  /* Copyright */
  .text-center {
    text-align: center;
  }
  
  .text-sm {
    font-size: 0.875rem;
  }
  
  .mt-6 {
    margin-top: 1.5rem;
  }
  
  .mt-2 {
    margin-top: 0.5rem;
  }
  
  /* Animações */
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.7;
    }
  }
  
  .text-red-500 {
    color: #ef4444;
    animation: pulse 2s infinite;
  }
  
  /* Responsividade Adicional */
  @media (max-width: 640px) {
    .space-x-4 {
      margin-left: 0;
      justify-content: space-between;
    }
    
    .payment-methods {
      gap: 0.5rem;
    }
    
    .payment-methods i {
      font-size: 1.25rem;
    }
  }

  /* Benefits Section Styles */
.benefits-section {
    background-color: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.benefit-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* section new */


/* Cores e variáveis */
:root {
  --primary-color: #8B4513;
  --secondary-color: #D2B48C;
  --accent-color: #A0522D;
  --light-color: #F5F5DC;
  --dark-color: #4A3728;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}


/* Navbar Styles */
.bg-brown {
  background-color: var(--primary-color);
}

.social-icons a:hover {
  opacity: 0.8;
}

/* Hero Section */
.text-brown {
  color: var(--primary-color);
}

.btn-brown {
  background-color: var(--primary-color);
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.btn-brown:hover {
  background-color: var(--accent-color);
  color: white;
}

/* Benefits Section */
.benefits-section {
  background-color: var(--light-color);
}

.benefit-item {
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.benefit-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 0.9rem;
  color: #666;
}

/* Product Cards */
.product-card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  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.2);
}

.card-title {
  color: var(--primary-color);
  font-weight: 600;
}

/* Slick Slider Customization */
.slick-prev, .slick-next {
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 1;
}

.slick-prev:hover, .slick-next:hover {
  background-color: var(--accent-color);
}

.slick-prev:before, .slick-next:before {
  font-size: 20px;
}

.slick-dots li button:before {
  color: var(--primary-color);
}

.slick-dots li.slick-active button:before {
  color: var(--accent-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
}

/* Special Services Section */
.special-services-section {
  background-color: #f8f4e3;
  padding: 60px 0;
}

.service-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-card .card-text {
  color: #666;
  margin-bottom: 20px;
}

.contact-banner {
  background-color: var(--primary-color);
  color: white;
  border-radius: 8px;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
}

.contact-banner h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .benefit-item {
      margin-bottom: 20px;
  }
  
  .whatsapp-float {
      width: 50px;
      height: 50px;
      right: 20px;
      bottom: 20px;
  }
  
  .whatsapp-float img {
      width: 50px;
      height: 50px;
  }
}
