/* ==========================================================
   CONFIGURAÇÕES GERAIS
========================================================== */

:root {
    --cor-principal: #111111;
    --cor-secundaria: #c89b3c;
    --cor-texto: #333333;
    --cor-cinza: #f5f5f5;
    --cor-branca: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--cor-texto);
    background: var(--cor-branca);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* ==========================================================
   TOPO
========================================================== */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 1000;
}

.navbar {
    min-height: 85px;
}

.logo-site {
    max-height: 65px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #222222;
    font-weight: 600;
    margin-left: 18px;
    transition: .2s;
}

.navbar-nav .nav-link:hover {
    color: var(--cor-secundaria);
}


/* ==========================================================
   BANNER PRINCIPAL
========================================================== */

.banner-principal {
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: center;

    background-image: url('/imagens/banner_principal.jpg');
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .50);
}

.banner-conteudo {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.banner-destaque {
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
}

.banner-conteudo h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-conteudo p {
    font-size: 23px;
    margin-bottom: 30px;
}

.banner-botoes {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


/* ==========================================================
   SEÇÕES
========================================================== */

.secao-padrao {
    padding: 90px 0;
}

.secao-cinza {
    background: var(--cor-cinza);
}

.secao-subtitulo {
    color: var(--cor-secundaria);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.secao-titulo {
    color: #111111;
    font-size: 42px;
    font-weight: 700;
    margin: 8px 0 25px;
}

.imagem-secao {
    border-radius: 8px;
}


/* ==========================================================
   AGENDA
========================================================== */

.card-agenda {
    background: #ffffff;
    height: 100%;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    gap: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.data-agenda {
    min-width: 75px;
    text-align: center;
    border-right: 1px solid #dddddd;
    padding-right: 20px;
}

.data-agenda .dia {
    display: block;
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    color: #111111;
}

.data-agenda .mes {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--cor-secundaria);
}

.agenda-info h3 {
    font-size: 19px;
    font-weight: 700;
}

.agenda-info p {
    margin-bottom: 5px;
}


/* ==========================================================
   CONTATO
========================================================== */

.chamada-contato {
    padding: 80px 0;
    background: #171717;
    color: #ffffff;
}

.chamada-contato h2 {
    font-size: 38px;
    font-weight: 700;
}

.chamada-contato p {
    font-size: 18px;
    margin: 20px 0 30px;
}


/* ==========================================================
   RODAPÉ
========================================================== */

.site-footer {
    background: #0c0c0c;
    color: #aaaaaa;
    padding: 60px 0 25px;
}

.footer-titulo {
    color: #ffffff;
    font-size: 28px;
}

.footer-subtitulo {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

.site-footer a {
    color: #cccccc;
}

.site-footer a:hover {
    color: #ffffff;
}

.redes-sociais {
    display: flex;
    gap: 12px;
}

.redes-sociais a {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid #444444;
    border-radius: 50%;
    font-size: 19px;
    transition: .2s;
}

.redes-sociais a:hover {
    background: #ffffff;
    color: #111111;
}

.footer-linha {
    border-top: 1px solid #2b2b2b;
    margin: 45px 0 25px;
}

.footer-copy {
    text-align: center;
    font-size: 13px;
}
/* ==========================================================
   CABEÇALHO - INFORMATIVOS
========================================================== */

.cabecalho-informativos {
    background: var(--cor-cinza);
    padding: 32px 0;
    text-align: center;
}

.cabecalho-informativos h1 {
    margin: 0;
    color: #111111;
    font-size: 38px;
    font-weight: 700;
}

/* ==========================================================
   SOBRE O CANTOR
========================================================== */

.cabecalho-sobre {
    background: var(--cor-cinza);
    padding: 32px 0;
    text-align: center;
}

.cabecalho-sobre h1 {
    margin: 0;
    color: #111111;
    font-size: 38px;
    font-weight: 700;
}


/* FOTO PRINCIPAL */

.sobre-foto-principal {
    position: relative;
}

.sobre-foto-principal img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
}

.sobre-texto-destaque {
    font-size: 21px;
    line-height: 1.6;
    color: #222222;
    font-weight: 500;
}


/* TEXTO */

.sobre-foto-principal + div p,
.secao-padrao p {
    line-height: 1.8;
}


/* DESTAQUE MUSICAL */

.sobre-destaque {
    background: #151515;
    color: #ffffff;
    padding: 85px 0;
}

.sobre-destaque-subtitulo {
    display: block;
    color: var(--cor-secundaria);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sobre-destaque h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}

.sobre-destaque p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #d5d5d5;
    font-size: 18px;
    line-height: 1.8;
}


/* FRASE FINAL */

.sobre-frase {
    background: var(--cor-cinza);
    padding: 65px 0;
}

.sobre-frase i {
    display: block;
    color: var(--cor-secundaria);
    font-size: 35px;
    margin-bottom: 20px;
}

.sobre-frase p {
    color: #222222;
    font-size: 23px;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

/* ==========================================================
   AGENDA
========================================================== */

.cabecalho-agenda {
    background: var(--cor-cinza);
    padding: 32px 0;
    text-align: center;
}

.cabecalho-agenda h1 {
    margin: 0;
    color: #111111;
    font-size: 38px;
    font-weight: 700;
}


/* CARD */

.agenda-card {
    display: flex;
    height: 100%;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
}


/* DATA */

.agenda-data {
    min-width: 120px;
    background: #151515;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 18px;
    text-align: center;
}

.agenda-dia {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.agenda-mes {
    color: var(--cor-secundaria);
    font-size: 15px;
    font-weight: 700;
    margin-top: 7px;
    letter-spacing: 1px;
}

.agenda-ano {
    font-size: 13px;
    color: #cccccc;
    margin-top: 4px;
}


/* CONTEÚDO */

.agenda-conteudo {
    padding: 25px;
    flex: 1;
}

.agenda-conteudo h2 {
    color: #111111;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 18px;
}

.agenda-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #555555;
}

.agenda-item i {
    color: var(--cor-secundaria);
}

.agenda-descricao {
    border-top: 1px solid #eeeeee;
    padding-top: 15px;
    margin-top: 17px;
    margin-bottom: 0;
    color: #666666;
    line-height: 1.6;
}


/* SEM EVENTOS */

.agenda-vazia {
    max-width: 700px;
    margin: 20px auto;
    padding: 50px 25px;
}

.agenda-vazia i {
    display: block;
    color: var(--cor-secundaria);
    font-size: 48px;
    margin-bottom: 18px;
}

.agenda-vazia h2 {
    font-size: 28px;
    font-weight: 700;
}

/* ==========================================================
   HOME - TIRE O PÉ
========================================================== */

.home-tire-o-pe {
    background: #f5f5f5;
    padding: 80px 0;
}

.home-tire-imagem-link {
    display: block;
}

.home-tire-imagem {
    display: block;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    transition: transform .25s ease;
}

.home-tire-imagem-link:hover .home-tire-imagem {
    transform: scale(1.015);
}

.home-tire-destaque {
    font-size: 20px;
    line-height: 1.6;
    color: #222222;
    font-weight: 500;
}

.home-tire-o-pe p {
    line-height: 1.8;
}

/* ==========================================================
   CERTIFICADO INPI
========================================================== */

.certificado-wrapper {
    width: 100%;
    text-align: center;
}

.certificado-imagem {
    display: block;
    width: 100%;
    max-width: 750px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
}