.elementor-kit-613{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-613 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a; /* Fundo cinza escuro */
    color: #fff;
}

/* Cabeçalho */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #2b2b2b;
    border-bottom: 2px solid #ff1b1b;
}

.header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff1b1b;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #ff1b1b;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-buttons button {
    padding: 8px 15px;
    border: none;
    background-color: #ff1b1b;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.auth-buttons button:hover {
    background-color: #e01414;
}

/* Banner Principal */
.banner {
    background-image: url('https://via.placeholder.com/1920x600'); /* Substitua pela imagem da base */
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    border-bottom: 2px solid #ff1b1b;
}

.banner-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #ff1b1b;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.banner-content .btn-call-to-action {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #ff1b1b;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.banner-content .btn-call-to-action:hover {
    background-color: #e01414;
}

/* Quem Somos */
.about {
    padding: 50px 20px;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff1b1b;
}

.about p {
    font-size: 18px;
    color: #ccc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}/* End custom CSS */