.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary-gradient);
  color: var(--text-color);
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.cta-button:hover {
  background: var(--primary-gradient-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #1a1a1a;
  border: none;
  min-width: 180px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffa500 0%, #ffd700 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary i {
  color: inherit;
  transition: color 0.3s ease;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  min-width: 180px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
  background-color: var(--gray);
}

.card img[src="img/placeholder.jpg"] {
  object-fit: contain;
  padding: 1rem;
}

.card:hover img {
  transform: scale(1.05);
}

.card h3 {
  margin: 1rem 0;
  color: var(--text);
  font-size: 1.2rem;
  padding: 0 1rem;
}

.card p {
  color: #666;
  margin-bottom: 1rem;
  padding: 0 1rem;
  flex-grow: 1;
}

.card .card-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem;
  padding: 0 1rem;
}

.notificacao {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 1rem 2rem;
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  z-index: 1000;
}

.notificacao.show {
  transform: translateY(0);
  opacity: 1;
}

.notificacao.success {
  border-left: 4px solid var(--secondary);
}

.notificacao.warning {
  border-left: 4px solid var(--accent);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.social-btn i {
  font-size: 1.2rem;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: scale(1.05);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}

@media (max-width: 768px) {
  .card .card-buttons {
    flex-direction: column;
  }

  .social-btn {
    width: 100%;
    justify-content: center;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }
}

.instagram-chamada {
  background: linear-gradient(90deg, 
    #F58529 0%,       
    #FCA65D 50%,     
    #f7bf58 85%,      
    #fcc24f 100%      
  );
  color: var(--white);
  padding: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(246, 136, 41, 0.3);
}

.instagram-chamada i {
  font-size: 2rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.instagram-cta-mini {
  background: white;
  color: #fc9003;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.instagram-cta-mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(252, 122, 0, 0.15);
}

.card-buttons .whatsapp-btn,
.card-buttons .interesse-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.card-buttons .whatsapp-btn {
  background: #25D366;
  color: white;
}

.card-buttons .whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card-buttons .interesse-btn {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.card-buttons .interesse-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card-buttons .interesse-btn i {
    color: var(--primary);
    transition: var(--transition);
}

.card-buttons .interesse-btn:hover i {
    color: var(--white);
}

.parceiros {
  padding: 1rem 0 2rem;
  overflow: hidden;
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  position: relative;
}

.parceiros h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.parceiros-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 -8rem;
  padding: 0 8rem;
}

.parceiros-track {
  display: flex;
  animation: scroll 80s linear infinite;
  width: max-content;
  padding: 0 8rem;
  gap: 2rem;
}

.parceiro-item {
  flex: 0 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.parceiro-item img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.parceiro-item:hover img {
  transform: scale(1.05);
}

.parceiro-item::after {
  content: attr(title);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.15s ease;
  pointer-events: none;
}

.parceiro-item:hover::after {
  opacity: 1;
  visibility: visible;
  bottom: -25px;
}

.parceiro-item img[alt="Suvinil"],
.parceiro-item img[alt="Tigre"],
.parceiro-item img[alt="Vedacit"],
.parceiro-item img[alt="Instituto Votorantim"] {
  max-width: 200px;
  max-height: 120px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .parceiros-carousel {
    margin: 0 -4rem;
    padding: 0 4rem;
  }
  
  .parceiros-track {
    padding: 0 4rem;
    gap: 1rem;
  }
  
  .parceiro-item {
    padding: 0 0.5rem;
  }
  
  .parceiro-item img {
    max-width: 100px;
    max-height: 50px;
  }

  .parceiro-item img[alt="Suvinil"],
  .parceiro-item img[alt="Tigre"],
  .parceiro-item img[alt="Vedacit"],
  .parceiro-item img[alt="Instituto Votorantim"] {
    max-width: 150px;
    max-height: 75px;
  }
}

.cortag-partnership {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.cortag-partnership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(74, 144, 226, 0.03) 0%, rgba(74, 144, 226, 0.01) 100%);
  z-index: 1;
}

.cortag-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cortag-logo-wrapper {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cortag-logo-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.cortag-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.cortag-text {
  flex: 1;
}

.cortag-text h2 {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cortag-text .highlight {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.cortag-text .highlight::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.cortag-text .description {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1rem;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .cortag-partnership {
    padding: 1.5rem 0;
  }

  .cortag-content {
    gap: 1.5rem;
  }

  .cortag-logo-wrapper {
    width: 150px;
    height: 150px;
  }

  .cortag-text h2 {
    font-size: 1.6rem;
  }

  .cortag-text .highlight {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .cortag-partnership {
    padding: 1.25rem 0;
  }

  .cortag-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cortag-logo-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .cortag-text h2 {
    font-size: 1.4rem;
  }

  .cortag-text .highlight {
    font-size: 1rem;
    padding-left: 0;
  }

  .cortag-text .highlight::before {
    display: none;
  }

  .cortag-text .description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .cortag-partnership {
    padding: 1rem 0;
  }

  .cortag-content {
    padding: 0 1rem;
  }

  .cortag-logo-wrapper {
    width: 100px;
    height: 100px;
    padding: 1rem;
  }

  .cortag-text h2 {
    font-size: 1.3rem;
  }

  .cortag-text .highlight {
    font-size: 0.95rem;
  }
}

footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
  position: relative;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-section h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-section p {
  color: #b3b3b3;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  color: var(--white);
  font-size: 1.5rem;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: var(--primary);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #b3b3b3;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-section ul li a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #b3b3b3;
}

.footer-contact li i {
  color: var(--primary);
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #b3b3b3;
  font-size: 0.9rem;
}

a[href*="wa.me"].whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366 !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff !important;
  border: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

a[href*="wa.me"].whatsapp-float i {
  color: #ffffff !important;
  font-size: 30px !important;
  line-height: 1 !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

a[href*="wa.me"].whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  background-color: #25d366 !important;
}

a[href*="wa.me"].whatsapp-float:hover i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

@media (max-width: 768px) {
  a[href*="wa.me"].whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  a[href*="wa.me"].whatsapp-float i {
    font-size: 25px !important;
  }
}

.interesse {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.interesse h2 {
  color: var(--text);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.interesse h2 span {
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

#lista-interesse {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid var(--gray);
  border-radius: 8px;
}

#lista-interesse li {
  padding: 1rem;
  border-bottom: 1px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition);
}

#lista-interesse li:last-child {
  border-bottom: none;
}

#lista-interesse li:hover {
  background: rgba(74, 144, 226, 0.05);
}

.produto-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.produto-info h4 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.produto-info p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.remover-produto {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.remover-produto:hover {
  background: rgba(220, 53, 69, 0.1);
}

#whatsappBtn {
  background: #25D366;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  transition: var(--transition);
  font-size: 1.1rem;
}

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

#whatsappBtn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Notification Styles */
.notificacao {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  color: var(--text);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.notificacao.show {
  transform: translateY(0);
  opacity: 1;
}

.notificacao.success {
  border-left: 4px solid #28a745;
}

.notificacao.error {
  border-left: 4px solid #dc3545;
}

.notificacao i {
  font-size: 1.2rem;
}

.notificacao.success i {
  color: #28a745;
}

.notificacao.error i {
  color: #dc3545;
}

/* Interest Button States */
.interesse-btn {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
}

.interesse-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.interesse-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.interesse-btn.active i {
  color: var(--white);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .interesse {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  #lista-interesse {
    max-height: 250px;
  }

  #lista-interesse li {
    padding: 0.75rem;
  }

  .produto-info h4 {
    font-size: 0.95rem;
  }

  .produto-info p {
    font-size: 0.85rem;
  }

  #whatsappBtn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

.social-feed {
  width: 100%;
  margin: 0;
  padding: 0;
}

.instagram-feed {
  width: 100%;
  height: 450px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.instagram-feed iframe {
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
}

.redes-sociais {
  width: 100%;
  margin: 0;
  padding: 0;
}

@property --instagram-inherits {
  syntax: '<boolean>';
  inherits: true;
  initial-value: true;
}

.instagram-feed iframe {
  isolation: isolate;
  contain: content;
}

.instagram-fallback {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.instagram-feed iframe[style*="display: none"] + .instagram-fallback {
  display: flex;
}

.instagram-cta-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  color: var(--white);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-cta-mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.instagram-cta-mini i {
  font-size: 1.2rem;
}

.card-container {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem auto;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  max-width: 1200px;
  width: 100%;
}

.card-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.sobre-content,
.material-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 1200px) {
  .card-container {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .card-container {
    padding: 1.5rem;
    margin: 1.5rem auto;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .card-container {
    padding: 1rem;
    margin: 1rem auto;
  }
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.info-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.contato-info .info-item i,
.contato-info .endereco i {
  color: var(--primary-color) !important;
  font-size: 1.5rem;
}

.info-item .h5 {
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.info-item p {
  color: var(--text-muted);
  margin: 0;
}

.endereco {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.endereco .h5 {
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.endereco p {
  color: var(--text-muted);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.top-info-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.material-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.material-texto h2 {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.cortag-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cortag-logo-wrapper {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.cortag-logo-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cortag-text h2 {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.cortag-text .highlight {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  color: var(--primary-color);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .material-grid {
    grid-template-columns: 1fr;
  }

  .cortag-content {
    flex-direction: column;
    text-align: center;
  }

  .cortag-text .highlight {
    font-size: 1.1rem;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
} 