@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Anton+SC&display=swap');


/* Estilos Gerais */
:root {
    --primary-color: #1E1E1E; 
    --secondary-color: #bd982b; 
    --text-color: #ffffff;
    --light-bg: #2C2C2C;
    --dark-bg: #343a40;
    --white: #fff;
    --black: #000000;
    --gradient-color: #614b0b;
    --gradient: linear-gradient(to top, #614b0b, #bd982b);
}

.destaque-cor {
    color: var(--secondary-color);
    font-weight: bold; /* Opcional: para dar ainda mais destaque */

}

.thank-you-message {
    text-align: center;
    padding: 100px 20px;
    background-color: transparent;
    color: var(--text-color);
}

#LogoTY {
    max-width: 35%;
    height: 80%;
    display: block;
    margin: 0 auto;
    position: relative;
    margin-top: -5%;
}

.video-background {
    position: relative;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10%;
    overflow: hidden;
    z-index: 0; /* Coloca o vídeo atrás do conteúdo */
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at center, #3b3b3b, #000000);
    line-height: 1.6;
    color:#fff;
     

}

#sobre p {
    background-color: var(--black);
    color: var(--text-color);
    padding: 60px 0;
    line-height: 1.8;
    text-align: justify;
    font-size: 1.4em; /* Tamanho da fonte aumentado */
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    
    
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
 
}

a:hover {
    color: rgb(192, 192, 192);
}

h1, h2, h3 {
    color: var(--white);
    margin-bottom: 15px;
    
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    font-size: 1.4em;
}

.btn:hover {
    background-color: #000000;
}

.logo-header {
height: 200px; /* Ajuste a altura conforme necessário */
vertical-align: middle; /* Alinha verticalmente com o texto */
margin-right: 1px; /* Adiciona um espaço entre o símbolo e o texto (se o símbolo estiver antes) */
padding-top: 25px; /* Ajusta o espaçamento superior */

}


header h1 {
    margin: -100px;
    color: var(--white);
    float: left ; /* Para alinhar ao lado da navegação */
}

header h1 a {
    font-weight: bold;
    color:  var(--black);
    

    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4em



}

header nav {
    float: right;
    
}

header nav ul {
    margin:  0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline-block;
    margin-left: 20px;
}

header nav ul li a {
    color: var(--black);
    font-weight: bold;
    padding: 5px 0;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: var(--primary--color);
}

/* Clearfix para o header */
header .container::after {
    content: "";
    display: table;
    clear: both;
}

/* Seção Hero (Banner Principal) */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(29, 28, 28, 0.5)), url('../img/hero-background.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    min-height: 400px; /* Altura mínima para o banner */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif; /* Substitua 'Montserrat' pelo nome da sua fonte */
    font-size: 1.2em; /* Ajuste o tamanho da fonte se necessário */
    font-weight: 700; /* Use o peso que você importou, ex: 700 para Bold */
    text-decoration: none;
}


.hero h2 {
    color: var(--white);
    font-size: 6em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Seções de Conteúdo */
section {
    padding: 60px 0;
    text-align: center;
}

section:nth-of-type(even) { /* Cores alternadas para melhor legibilidade */
    background-color: var(--black);
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
   
}

section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    
    
}

/* Seção Serviços */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.service-item {
    background: radial-gradient(circle at left, var(--gradient-color), var(--secondary-color));
    padding: 30px;
    border-radius: 8px;
    border: 10px solid var(--black);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    font-size: 1.4em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.service-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 15%;
    margin-bottom: 10px;
    margin-top: 10px;
   
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Seção Projetos */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-item {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.project-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.project-item h3 {
    margin: 15px;
    color: var(--primary-color);
}

.project-item p {
    margin: 0 15px 15px;
    font-size: 0.9em;
}

.project-item a {
    display: block;
    padding: 10px 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    transition: background-color 0.3s ease;
}

.project-item a:hover {
    background-color: var(--primary-color);
}

/* Seção Contato */
.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

.contact-info p {
    margin: 5px 0;
}

/* Footer */
footer {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 0;
    margin-top: 30px;
}

footer p {
    position: sticky;
    margin: auto;
    margin-bottom: 0;
}

.social-links a {
    color: var(--white);
    margin: 0 10px;
    font-size: 1.2em;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Responsividade Básica */

@media (max-width: 600px) {
    .hero h2 {
        font-size: 4em;
    }

    .hero p {
        font-size: 1em;
    }

    section h2 {
        font-size: 2em;
    }

    .service-item {
        font-size: 1.2em;
    }

    .project-item h3 {
        font-size: 1.2em;
    }

    .contact-form {
        font-size: 0.9em;
    }

    footer p {
        font-size: 0.8em;
    }
    .thank-you-message {
    text-align: center;
    padding: 100px 20px;
    background-color: transparent;
    color: var(--text-color);
}

#LogoTY {
    max-width: 80%;
    height: 80%;
    display: block;
    margin: 0 auto;
    position: relative;
    margin-top: -50%;
}
    .btn {
        font-size: 1.2em;
        padding: 8px 16px;
    }
}
