﻿/*
Theme Name: Brainsec
Author: Luiz+Cruz Design
Author URI: https://luizcruzdesign.com
Description: Tema desenvolvido especialmente para o funcionamento do website Brainsec.
Version: 1.0
*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Root */
:root {
	--primary: #00ACC0;
	--secondary: #2C3447;
	--text-dark: #373737;
	--dark: #152339;
	--light-green: #ECF1F2;
	--dark-gray: #5c6d78;
	--gray: hsl(0,0%,95%);
}

/* Basics */
body, html {
	height: 100vh;
}

* {
	font-family: "Lato", "Arial", sans-serif;
}

.py-6 {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

p, section li, input {
	font-size: 16px;
}

li a {
	font-size: inherit;
}

/*b, strong {
	font-weight: 900!important;
}*/

.white {
	background-color: #fff;
}

.text-white {
	color: #fff;
}

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

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

.light-green {
	background-color: var(--light-green);
}

.dark-gray {
	background-color: var(--dark-gray);
}

.gray {
	background-color: var(--gray);
}

figure.especial {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

@media only screen and (max-width: 992px) {
	figure.especial {
		position: relative;
		top: auto;
		transform: none;
	}
}

h1 {
	font-size: 2.5rem;
}

h1, h2 {
	text-transform: uppercase;
	color: var(--dark);
}

h2 {
	font-size: 1.625rem;
}

h3 {
	font-size: 1.5rem;
}

a.cta {
	border-radius: 40px;
	padding: 0.75rem 2rem;
	transition: 0.3s;
	color: white;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	display: inline-block;
}

a.cta:hover {
	transform: scale(1.05);
}

/* Nav */
nav {
	height: 110px;
	padding: 35px 0px;
	background-color: var(--secondary);
	position: relative;
	z-index: 999;
}

nav #desktop-nav ul a {
	text-decoration: none!important;
	/* font-weight: bold; */ 
	font-size: 18px;
	color: #fff!important;
	opacity: 0.5;
	transition: 0.3s;
}

nav #desktop-nav ul li:hover a {
	opacity: 1;
}

nav .nav-social-links li a {
	font-size: 30px!important;
}

nav img.nav-logo {
	height: 100%;
}

nav a.hamburger-menu {
	color: #fff;
	font-size: 34px;
	text-decoration: none;
}

nav #mobile-nav a {
	color: var(--secondary);
}

/* Em Construcao */
section#em-construcao {
	background-image: url('https://brainsec.com.br/wp-content/uploads/2025/12/Imagem-BG.png');
	background-size: cover;
	background-position: center;
}

@media only screen and (max-width: 992px) {
	section#em-construcao {
		background-position: 40% center;
	}
}

a.whatsapp {
	border-radius: 40px;
	padding: 0.5em 1em;
	background-color: transparent;
	border: 2px solid white;
}

div.bg-overlay {
	background-color: rgba(0,0,0,0.2);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

/* Form */
#form-contato input, #form-contato textarea {
	border-radius: 0.5rem;
	padding: 5px 10px;
	border: none;
	width: 100%;
}

#form-contato input[type="submit"] {
	background-color: var(--primary);
	font-weight: bold;
	border-radius: 100px;
	color: white;
	font-size: 20px;
	padding: 0.5em 1em;
	transition: 0.3s;
}

#form-contato input[type="submit"]:hover {
	transform: scale(1.05);
}

#form-contato .wpcf7-response-output {
	border: none!important;
	color: white;
	margin: 1em 0!important;
	padding: 0!important;
}

#form-contato .wpcf7-turnstile {
	margin-bottom: 1rem;
}

/* Home */
#hero-banner {
	height: 800px;
}

.banner-2-col {
	background-position: center;
	background-size: cover;
}

.banner-2-col span, .banner-2-col h1 {
	color: white;
}

.especialidade-item {
	border: 2px solid var(--dark);
}

article :last-child {
	margin-bottom: 0;
}

.contatos iframe {
	width: 100%;
	height: 350px;
}

/* Footer */
footer {
	background-color: var(--secondary);
}