/*
Theme Name:Grupo de Revenda
Theme URI: https://wacars.com.br
Author: Vinicius Coimbra
Author URI: https://wacars.com.br
Description: Bem-vindo ao site do Grupo de Revendas.
Version: 1.3
Text Domain: GrupodeRevendas
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

:root {
    --mainColor: #111111;
    --bg: #F76300;
    --white: #FFFFFF;
    --sombras: #02020b;
    --lighter: #727072; 
    --ultraBlack: #000000;
  }

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;       
}

html, body{
  background-color: var(--mainColor);
}

nav{
  background-color: var(--ultraBlack);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  margin: 0 auto;
}

nav h2{
  color: var(--white);
  font-size: 2.5rem;
}

nav img{
  width: 100px;
  height: auto;
}

.socialmedia ul{
  list-style: none;
  display: flex;
  gap: 20px;
}

.socialmedia a {
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.socialmedia a:hover {
  color: var(--bg);
  transform: scale(1.2) rotate(10deg);
}

header{
  width: 100%;
  height: 75vh;
  background: url(img/wp5055258.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;

}

.chamada1 {
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    height: 80vh;
    padding-left: 5%;
    color: #fff;
}

.conteudo-chamada {
    max-width: 750px;
}

.conteudo-chamada h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.conteudo-chamada p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-grupo {
    display: inline-block;
    background: #fff;
    color: #f76300;
    padding: 1rem 2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-grupo:hover {
    background: #f76300;
    color: #fff;
    border: 2px solid #fff;
}

.infinite-slider-section {
  background: var(--corSecundaria, #ea9010);
  color: var(--mainColor, #111111);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.infinite-slider-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.infinite-slider-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.slide-item {
  flex: 0 0 auto;
  margin: 0 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 20px 0;
}



.container{
  width: 85%;
  margin: 0 auto;
  text-align: center;
}

footer{
  padding: 50px 0;
  background-color: var(--sombras);
  color: var(--white);
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px; 
}

.web-icons ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.web-icons a {
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.web-icons a:hover {
  color: var(--bg);
  transform: scale(1.2) rotate(10deg);
}


.web-icons li:hover {
  transform: scale(1.2); 
}