/*
Theme Name: Woodev
Theme URI: https://www.devmulti.com.br
Author: Bruno
Author URI:https://devmulti.com.br/
Description: Um tema para ecommerce leve feito para Devmulti.
Version: 1.4 
Text Domain:
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: e-commerce, custom-menu, custom-logo, featured-images, footer-widgets, theme-options, translation-ready, blog, right-sidebar, sticky-post, threaded-comments
*/
:root {
  --primary: #EBB83D;
  --secondary: #ff9900;
  --dark: #333333;
  --light: #ffffff;
  --bg: #f2f2f2;
  --text: #333333;
  --border-radius: 8px;
  --shadow: 0 3px 10px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
}

/* Estilos Gerais */
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.highlight {
  color: var(--primary);
}

.btn {
  padding: 12px 25px;
  font-weight: 700;
  border-radius: var(--border-radius);
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  border: none;
}

.btn-primary:hover {
  background: var(--secondary);
  color: var(--light);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}

.btn-outline:hover {
  background: var(--light);
  color: var(--dark);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--light);
  border: none;
}

.btn-secondary:hover {
  background: var(--dark);
  transform: translateY(-3px);
}

.btn-link {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-link i {
  margin-left: 8px;
  transition: var(--transition);
  color: var(--primary);
}

.btn-link:hover i {
  transform: translateX(3px);
}

img {
  max-width: 100%;
}

/* Hero Section */
.hero-section {
  background-color: var(--dark);
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('<?php echo get_template_directory_uri(); ?>/img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--light);
  padding: 100px 0 80px;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-specs {
  background: rgba(0,0,0,0.3);
  border-left: 3px solid var(--primary);
  padding: 15px 20px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.hero-specs p {
  margin: 8px 0;
}

.hero-specs i {
  color: var(--primary);
  margin-right: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Animated Hero Image */
.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: slideIn 1s ease-out;
}

.hero-image img {
  transition: transform 0.5s ease;
  width: 100%;
}

.hero-image:hover img {
  transform: scale(1.05);
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Serviços */
.services-section {
  background-color: var(--light);
}

.service-card {
  background: var(--bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid var(--primary);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-features li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
  padding-left: 22px;
}

.service-features li:before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 6px;
}

.card-footer {
  margin-top: auto;
  padding-top: 20px;
}

/* Banner de Localidade */
.location-banner {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('<?php echo get_template_directory_uri(); ?>/img/batatais.jpg');
  background-size: cover;
  background-position: center;
  color: var(--light);
  padding: 60px 0;
}

.location-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
}

.location-content p {
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Processo */
.process-section {
  background-color: var(--bg);
}

.process-container {
  position: relative;
  padding: 20px 0;
}

.process-line {
  position: absolute;
  top: 60px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--primary);
  z-index: 1;
}

.process-steps {
  position: relative;
  z-index: 2;
}

.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
  transition: var(--transition);
  background: var(--light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  height: 100%;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 15px;
  box-shadow: 0 0 0 5px rgba(255,221,0,0.2);
}

.process-step h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Especificações */
.specs-section {
  background-color: var(--light);
}

.specs-carousel {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.specs-list {
  margin-top: 30px;
}

.specs-item {
  margin-bottom: 20px;
}

.specs-item h5 {
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.specs-item h5 i {
  color: var(--primary);
  margin-right: 10px;
  min-width: 20px;
  text-align: center;
}

.specs-item p {
  margin: 0;
  color: #666;
}

.specs-divider {
  border-top: 1px dashed #ddd;
  margin: 50px 0;
}

/* Contato */
.contact-section {
  background-color: var(--bg);
}

.contact-content {
  background: var(--light);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.contact-content .wpcf7-form label {
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

.contact-content .wpcf7-form input,
.contact-content .wpcf7-form textarea,
.contact-content .wpcf7-form select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.contact-content .wpcf7-submit {
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  transition: var(--transition);
}

.contact-content .wpcf7-submit:hover {
  background: var(--secondary);
  color: var(--light);
  transform: translateY(-3px);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.contact-item {
  display: flex;
  align-items: center;
  margin: 10px 20px;
}

.contact-item i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 18px;
}

.contact-item a {
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--secondary);
}

/* Media Queries */
@media (max-width: 991px) {
  section {
    padding: 60px 0;
  }
  
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }
  
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .process-step {
    margin-bottom: 30px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .contact-info {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-item {
    margin: 10px 0;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero-image {
    animation: fadeIn 1s ease-out;
  }
}

@media (max-width: 575px) {
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .contact-content {
    padding: 25px;
  }
  
  .specs-section .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}
/* Banner de Serviços com Parallax */
.parallax-section {
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('<?php echo get_template_directory_uri(); ?>/img/truck-crane-banner.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.banner-content h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  position: relative;
  display: inline-block;
}

.banner-content h3:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background-color: var(--primary);
  transform: translateX(-50%);
}

.banner-description {
  font-size: 18px;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.banner-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.banner-actions .btn {
  padding: 12px 24px;
  font-weight: 700;
  transition: all 0.3s;
  min-width: 200px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.banner-actions .btn i {
  margin-right: 8px;
}

.btn-light {
  background: #fff;
  color: var(--dark);
  border: none;
}

.btn-light:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}

/* Fallback para dispositivos móveis que não suportam parallax */
@media (max-width: 767px) {
  .parallax-section {
    background-attachment: scroll;
  }
  
  .banner-content h3 {
    font-size: 28px;
  }
  
  .banner-description {
    font-size: 16px;
  }
  
  .banner-actions {
    flex-direction: column;
  }
  
  .banner-actions .btn {
    width: 100%;
    margin: 5px 0;
  }
}
/* Seção de Contato Minimalista */
.contact-minimal-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.header-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  margin: 0 auto;
}

/* Cards de Contato */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-card-inner {
  background: #fff;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.icon-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f1f1f1;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.3;
  transition: transform 0.6s ease;
}

.contact-card:hover .icon-wrapper::before {
  transform: scale(1.2);
}

.icon-wrapper i {
  font-size: 32px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.contact-card:hover .icon-wrapper i {
  transform: scale(1.2);
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.contact-card p {
  color: #777;
  margin-bottom: 25px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  background: #f7f7f7;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-btn span {
  flex-grow: 1;
  text-align: center;
}

.contact-btn i {
  opacity: 0;
  width: 0;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-btn {
  background: #333;
  color: #fff;
}

.contact-card:hover .contact-btn i {
  opacity: 1;
  width: 20px;
}

/* Estilos específicos para cada card */
.whatsapp-card .icon-wrapper {
  background-color: rgba(37, 211, 102, 0.1);
}

.whatsapp-card .icon-wrapper i {
  color: #25d366;
}

.whatsapp-card:hover .contact-btn {
  background: #25d366;
}

.phone-card .icon-wrapper {
  background-color: rgba(0, 123, 255, 0.1);
}

.phone-card .icon-wrapper i {
  color: #0d6efd;
}

.phone-card:hover .contact-btn {
  background: #0d6efd;
}

.email-card .icon-wrapper {
  background-color: rgba(255, 193, 7, 0.1);
}

.email-card .icon-wrapper i {
  color: var(--primary);
}

.email-card:hover .contact-btn {
  background: var(--primary);
  color: #222;
}

/* Informações adicionais */
.additional-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.info-item {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 15px;
}

.info-item i {
  margin-right: 10px;
  color: #888;
}

/* Redes sociais */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  color: #666;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.social-links a:nth-child(1):hover {
  background: #3b5998;
  color: white;
}

.social-links a:nth-child(2):hover {
  background: #e1306c;
  color: white;
}

.social-links a:nth-child(3):hover {
  background: #ff0000;
  color: white;
}

/* Responsividade */
@media (max-width: 767px) {
  .contact-minimal-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .contact-cards {
    gap: 20px;
  }
  
  .contact-card-inner {
    padding: 30px 20px;
  }
  
  .additional-info {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
