/*
Theme Name: Frost
Theme URI: https://frostwp.com/
Author: WP Engine
Author URI: https://wpengine.com/
Description: Frost adaptado para Caseirinhos D'Idanha - Versão 2 (Editorial & Arejada).
Version: 1.0.10
License: GNU General Public License v3
Text Domain: frost
*/

/* Defaults & Reset
---------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

a,
button,
input:focus,
input[type="button"],
input[type="submit"],
textarea:focus,
.wp-element-button {
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

b,
strong,
th {
	font-weight: 700;
}

/* Formulários Lean & Agradáveis
---------------------------------------- */

input,
select,
textarea {
	background-color: var(--wp--preset--color--base);
	border: 1.5px solid rgba(82, 96, 55, 0.25);
	border-radius: 6px;
	color: var(--wp--preset--color--text-dark);
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--medium);
	line-height: 1.6;
	padding: 12px 16px;
	width: 100%;
}

input:focus,
select:focus,
textarea:focus {
	background-color: #FFFFFF;
	border-color: var(--wp--preset--color--primary);
	box-shadow: 0 0 0 3px rgba(216, 118, 0, 0.18);
	outline: none;
}

input[type="checkbox"],
input[type="radio"] {
	width: auto;
	accent-color: var(--wp--preset--color--primary);
}

::placeholder {
	color: var(--wp--preset--color--contrast);
	opacity: 0.55;
}

/* Navegação & Efeito Sublinhado Ocre
---------------------------------------- */

.wp-block-navigation-item__content {
	position: relative;
	padding-bottom: 4px;
}

.wp-block-navigation-item__content::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--wp--preset--color--primary);
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}

.wp-block-navigation-item__content:hover::after,
.wp-block-navigation-item.is-current-page .wp-block-navigation-item__content::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

.wp-block-navigation-item__content:hover {
	color: var(--wp--preset--color--primary) !important;
}

/* Respiro Estrutural (Versão 2)
---------------------------------------- */

/* Garante que nenhum grupo de secção cola a linhas divisórias */
.is-section-padded {
	padding-top: clamp(4rem, 8vw, 7.5rem) !important;
	padding-bottom: clamp(4rem, 8vw, 7.5rem) !important;
}

/* Botão Flutuante Voltar ao Topo
---------------------------------------- */

#back-to-top {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 44px;
	height: 44px;
	background-color: var(--wp--preset--color--contrast);
	color: var(--wp--preset--color--base);
	text-decoration: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
	z-index: 999;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

#back-to-top:hover {
	background-color: var(--wp--preset--color--primary);
	color: #FFFFFF;
	transform: translateY(-3px);
}

/* Mobile Utilities
---------------------------------------- */

@media only screen and (max-width: 782px) {
	.is-style-columns-reverse {
		flex-direction: column-reverse;
	}
}