
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f0f0f0;
    color: #333;
}

/* Cabeçalho */
header {
    background-color: #0e0e00;
    padding: 10px 0;
    color: white;
    position: relative;
    width: 100%;
    overflow: hidden;
    
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

/* Seção Hero */
#hero {
    color: rgb(34, 3, 3);
    text-align: center;
    padding: 60px 20px;
   background:transparent;
   background-color:white



}  

.btn {
    display: inline-block;
     padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px; 
    margin-top: 20px;
    border: 2px solid #007bff;
    border-radius: 5px;
    background-color: transparent;
    color: #007bff;
    font-size: 16px;
 }


.btn:hover {
    background-color: #2c9f0f;
}
/* Seções */
section {
    padding: 50px 20px;
    text-align: center;
}

/* Alinhar títulos das seções */
h2 {
    font-size: 28px;
    margin-bottom: 20px;
   
}

/* Serviços */
#servicos .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;

}

/* Contato */
#contato p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Rodapé */
footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
.card img:hover {
    transform: scale(1.1);
}
.logo {
    width: 69px;
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
    max-width: 100%;
}
nav {
    margin-left: auto;
}

.sobre-imagem {
    display: block;
    max-width: 60%;
    height: auto;
    margin: 20px auto;
    border-radius: 10px;
}
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    

}
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: aliceblue;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}
.card video{
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin:  auto;
  
}

.flags {
    position: absolute;
    top: 10px;
    right: 20px;
}

.flags img {
    width: 30px; /* Ajuste o tamanho da bandeira */
    height: auto;
    margin-right: 10px;
}

.bandeiras {
    position: absolute;
    top: 10px;
    right: 50px;
    display: flex;
    gap: 5px;

}

.bandeiras img {
    width: 20px;
    height: auto;
}

.logo{
    font-size: clamp(1rem, 5vw, 2rem);
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-container {
    display: flex;
    align-items: center;
    max-width: 100%;
    padding: 10px 0;
}

.container h1{
white-space: nowrap;

}

.banner{
    position: relative;
    width:100%;
    height: 300px;
    background: url(Caldeiraria.jpg) no-repeat center center/cover;
    overflow: hidden;

}


.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px; /* Espaçamento entre os cards */
    margin-top: 20px;
}

.stat-card {
    background-color: white; /* Cor de fundo */
    border: 2px solid #ddd; /* Borda sutil */
    border-radius: 10px; /* Arredondamento */
    padding: 20px;
    text-align: center;
    width: 200px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1); /* Efeito de sombra */
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05); /* Pequeno efeito de zoom ao passar o mouse */
}

.stat-card h3 {
    margin: 10px 0;
    color: #007bff; /* Cor destacada */
}

.stat-card p {
    font-size: 14px;
    color: #666;
}


.marquee-container {
    width: 100%;
    overflow: hidden;
    border: 2px solid #007bff; /* Cor da borda */
    padding: 10px;
    background-color: rgba(0, 123, 255, 0.1); /* Fundo levemente colorido */
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Pequena sombra */
}

.marquee-text {
    white-space: nowrap;
    display: inline-block;
    animation: marquee 10s linear infinite;
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
