﻿/*
Theme Name: Zanuto
Author: Luiz+Cruz Design
Author URI: http://luizcruzdesign.com
Description: Tema Clínica Zanuto.
Version: 01/2025
*/

/* 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: #99BF26;
	--secondary: #184B3F;
	--secondary-shade: #183A2F;
	--text-dark: #373737;
	--light: #F8F9F8;
	--bs-border-radius: 10px;
	--bs-gutter-x: 2rem;
}

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

.text-secondary {
	color: var(--secondary)!important;
}

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

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

.animate-scale-hover {
	transition: 0.3s!important;
}

.animate-scale-hover:hover {
	transform: scale(1.1)!important;
}

#color-bar {
	object-fit: cover;
	height: 15px;
}

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

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

.text-white p {
	color: #fff!important;
}

article li {
	color: var(--secondary);
}

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

section.container-fluid > .container {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

/* Text */
h1, .h1, h2, .h2, h3, .h3 {
	color: var(--secondary-shade);
}

h1, .h1, h2, .h2 {
	text-transform: uppercase;
}

h1, .h1 {
	color: var(--secondary-shade);
    font-size: 30px;
}

h2, .h2 {	
    font-size: 24px;
}

h3, .h3 {
	font-size: 20px;
	font-weight: bold;
}

p {
	color: var(--secondary);
}

p a, li a {
	color: var(--primary);
}

/* Nav */
nav {
	height: 110px;
	padding: 35px 0px;
	background-color: rgba(24,75,63,0.50);
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 15px;
}

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-whatsapp-btn, nav #nav-whatsapp-btn * {
    color: #fff;
}

nav #nav-whatsapp-btn {
	background-color: var(--primary);
    display: block;
    padding: 0.25em 1em;
}

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;
}

/* Hero Banner */
section#hero, section.inner-hero {
	padding-top: 110px;
	height: 60vw;
	background-color: var(--secondary);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

section#hero {
	max-height: 700px;
}

section.inner-hero {
	max-height: 500px;
}

section.inner-hero .text-secondary {
	text-align: left;
}

section#hero .row {
	height: 100%;
}

section#hero #conteudo-hero {
	text-transform: uppercase;
	font-size: 50px;
}

@media only screen and (max-width: 1400px) {
	section#hero #conteudo-hero {
		font-size: 40px;
	}
}

@media only screen and (max-width: 1200px) {	
	section#hero #conteudo-hero {
		font-size: 30px;
	}
}

@media only screen and (max-width: 992px) {
	section#hero {
		padding-top: 140px;
		height: auto;
		max-height: none;
	}
	
	section#hero .row {
		height: auto;
	}
	
	section.inner-hero .text-secondary {
		text-align: center;
		width: 100%;
		text-shadow: 0px 0px 10px white;
	}
}

section#hero #conteudo-hero * {
	color: #fff;
}

section#hero #conteudo-hero p:last-of-type {
	margin-bottom: 0;
}

#agende-consulta-btn {
	position: relative;
    transform: translateY(-50%);
	transition: 0.3s;
}

#agende-consulta-btn:hover {
    transform: translateY(-50%) scale(1.05);
}

/* Profissionais */
img.foto-profissional {
	aspect-ratio: 0.77;
	object-fit: cover;
}

/* Depoimentos */
#depoimentos-carousel .carousel-control-next, #depoimentos-carousel .carousel-control-prev, #depoimentos-carousel i {
	color: var(--primary)!important;
	font-size: 50px;
}

/* Contatos */
#contatos * {
	color: #fff!important;
}

/* Form */
.wpcf7 input.wpcf7-form-control {
	padding: 10px;
	text-align: center;
	font-style: italic;
	color: var(--text-secondary);
}

.wpcf7 input[type="submit"] {
	padding: 10px 20px;
	text-transform: uppercase;
	font-weight: bold;
	border: 0;
	background-color: var(--primary);
	color: #fff;
	display: block;
	margin: 0 auto;
}

#politica-privacidade p, #politica-privacidade li {
	font-style: italic;
}