/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Rideup - Horse Club and Equestrian HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why choose us css
08. Our Club Benefits css
09. Plan Your Ride css
10. Our Milestones css
11. Our Pricing css
12. Our Benefits css
13. Our Testimonials css
14. Our Faqs css
15. Our Gallery css
16. What We Do css
17. Our Blog css
18. Footer css
19. About Us Page css
20. Services Page css
21. Service Single css
22. Blog Archive css
23. Blog Single css
24. Team Page css
25. Team Single css
26. Pricing Page css
27. Testimonials Page css
28. Image Gallery css
29. Video Gallery css
30. FAQs Page css
31. Contact Us Page css
32. 404 Error Page css
33. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #423a34;
	--secondary-color			: #FFFFFF;
	--bg-color					: #F4F1E9;
	--text-color				: #5a5550;
	--accent-color				: #c9a96e;
	--accent-secondary-color	: #FFFFFF00;
	--white-color				: #FFFFFF;
	--divider-color				: #263A311A;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Mona Sans", sans-serif;
	--accent-font				: "Playfair Display", serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

html,
body{
	width: 100%;
	overflow-x: clip;
	-webkit-overflow-scrolling: touch;
}

.image-anime,
.hero-bg-img,
.what-we-do-img img,
.faqs-img img,
.about-us-images img,
.shop-card-img img{
	will-change: transform;
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: #e6e4e2;
}

::-webkit-scrollbar-track{
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
	background: var(--accent-color);
}

::selection{
	color: var(--white-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
	/* Sem height:auto, o atributo height="..." das imagens do editor VvVeb fica fixo:
	   a largura encolhe com o container e o object-fit:cover corta a foto (marcas de
	   água desapareciam). Regras do tema com altura explícita continuam a ganhar. */
	height: auto;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}
.text-base-color{
	color: var(--accent-color) !important;
}
.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(21 22 22) !important;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

/* .row > *{
	padding-right: 15px;
	padding-left: 15px;
} */

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}



.btn-default-2{
	position: relative;
    display: inline-block;
    background: var(--white-color);
	border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
	line-height: 1.25em;
    color: var(--primary-color);
    padding: 16px 55px 16px 30px;
    overflow: hidden;
    border: none;
	transition: all 0.4s ease-in-out;
    z-index: 0;
}
.btn-default-2:hover{
	color: var(--primary-color);
}
.btn-default-2::before{
	content: '';
	position: absolute;
	top: 50%;
    right: 30px;
	width: 12px;
	height: 12px;
	background: url('../images/arrow-white.svg') no-repeat;
	filter: brightness(1) invert(1);
    background-position: center center;
    background-size: cover;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}
.btn-default-2:hover::before{
	transform: translateY(-50%) rotate(45deg);
}
.btn-default-2::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
    background: var(--primary-color);
	border-radius: 0;
    transition: 0.4s ease-in-out;
	z-index: -1;
}
.btn-default-2:hover::after{
	width: 100%;
	left: 0;
	right: auto;
}
.btn-default-2.btn-highlighted:hover{
	color: var(--primary-color);
}
.btn-default-2.btn-highlighted:hover:before{
	filter: brightness(1) invert(1);
}
.btn-default-2.btn-highlighted::after{
	background-color: var(--white-color);
}







.btn-default{
	position: relative;
    display: inline-block;
    background: var(--primary-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25em;
    color: var(--white-color);
    padding: 14px 50px 14px 25px;
    overflow: hidden;
    border: none;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.btn-default:hover{
	color: var(--white-color);
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 50%;
    right: 30px;
	width: 10px;
	height: 10px;
	background: url('../images/arrow-white.svg') no-repeat;
    background-position: center center;
    background-size: cover;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover::before{
	transform: translateY(-50%) rotate(45deg);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
    background: var(--primary-color);
	border-radius: 0;
    transition: 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::after{
	width: 100%;
	left: 0;
	right: auto;
}

.btn-default.btn-highlighted:hover{
	color: var(--white-color);
}

.btn-default.btn-highlighted:hover:before{
	transform: translateY(-50%) rotate(0deg) translateX(3px);
}

.btn-default.btn-highlighted::after{
	background-color: transparent;
}

.readmore-btn{
	    font-size: 14px;
    position: relative;
    display: inline-block;
    font-weight: 500;
    line-height: normal;
    text-transform: math-auto;
    color: var(--primary-color);
    padding-right: 20px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn::before{
	content: '';
    position: absolute;
    top: 5px;
    right: 0;
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	width: 8px;
	height: 8px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover::before{
	transform: rotate(45deg);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

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

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-row .section-title.section-title-center{
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.section-row .section-title.section-title-center p{
	max-width: 695px;
	margin-left: auto;
	margin-right: auto;
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	margin-top: 30px;
	text-align: left;
}

.section-title-content p{
	margin-bottom: 20px;
}

.section-title-content p:last-child{
	margin-bottom: 0;	
}

.section-title{
	margin-bottom: 25px;
}

.section-title h3{
	position: relative;
	display: inline-block;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	font-size: 12px;
    font-weight: 500;
	line-height: 1em;
	text-transform: capitalize;
    color: var(--primary-color);
	padding: 10px 15px 10px 30px;
    margin-bottom: 10px;
}

.section-title h3::before{
	content: '';
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 8px;
	height: 8px;
}

.section-title h1{
	font-size: 50px;
	font-weight: 900;
	line-height: 55px;
	letter-spacing: -2px;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 45px;
    font-weight: 800;
    line-height: 1.1em;
    letter-spacing: -1px;
    margin-bottom: 0;
    cursor: none;
}

.border-end-primary {
    border-right: 1px solid #423a3412;
}

.section-title h1 span,
.section-title h2 span{
	font-family: var(--accent-font);
	font-weight: 400;
	font-style: italic;
}

.section-title p{
	font-weight: 400;
	font-size: 15px;
	margin-top: 20px;
	margin-bottom: 0;
	color: var(--primary-color);
}

.dark-section .section-title h3{
	border-color: var(--dark-divider-color);
	color: var(--white-color);
}

.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p{
	color: var(--white-color);
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: absolute;
    top: 0;
    width: 100%;
	/* border-bottom: 1px solid var(--dark-divider-color); */
    z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	width: 100%;
	z-index: 100;
	transition: background 0.3s ease;
}

header.main-header:has(.submenu-mega:hover) .header-sticky{
	background: rgba(15, 15, 15, 0.97);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
    transform: translateY(0);
	background: var(--primary-color, #423a34);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

header.main-header .container{
	max-width: 1300px;
}

.navbar{
	padding: 12px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 0px;
	position: relative;
}

.main-menu ul li a{
	font-size: 12px;
	font-weight: 500;
	line-height: 1em;
	padding: 8px 12px !important;
	color: var(--white-color);
	background: transparent;
	border-radius: 4px;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}

.main-menu ul > li.active > a{
	color: var(--accent-color);
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

/* ===== dc-carousel — setas automáticas em grids com >3 cards ===== */
.dc-cr-outer{
	position: relative;
}
.dc-cr-outer .dc-cr-viewport{
	overflow: hidden;
}
.dc-cr-outer .dc-cr-btn{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid rgba(0,0,0,0.13);
	background: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	padding: 0;
	font-size: 26px;
	line-height: 1;
	color: var(--primary-color);
	box-shadow: 0 2px 14px rgba(0,0,0,0.09);
	transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.dc-cr-outer .dc-cr-btn:hover:not(:disabled){
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: #fff;
	box-shadow: 0 4px 18px rgba(0,0,0,0.14);
}
.dc-cr-outer .dc-cr-btn:disabled{
	opacity: 0.28;
	pointer-events: none;
}
.dc-cr-outer .dc-cr-btn--prev{ left: -10px; }
.dc-cr-outer .dc-cr-btn--next{ right: -10px; }
.dc-cr-outer .dc-cr-row{
	flex-wrap: nowrap !important;
	transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
	margin-left: 0 !important;
	margin-right: 0 !important;
}
@media (max-width: 991px){
	.dc-cr-outer .dc-cr-row{
		flex-wrap: wrap !important;
		margin-left: calc(var(--bs-gutter-x) * -0.5) !important;
		margin-right: calc(var(--bs-gutter-x) * -0.5) !important;
		transform: none !important;
		transition: none !important;
	}
	.dc-cr-outer .dc-cr-btn{ display: none !important; }
	.dc-cr-outer .dc-cr-viewport{ overflow: visible !important; }
}

.main-menu ul li.submenu-mega:hover > a{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scale(1,0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 6px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scale(1,1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

/* ── Mega Dropdown Overlay ── */
.mega-dropdown-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.mega-dropdown-overlay.active{
    opacity: 1;
    visibility: visible;
}

/* ── Mega Dropdown (Services) ── */
.main-menu ul li.submenu-mega{
    position: static;
}

.main-menu ul li.submenu-mega > a{
    position: relative;
}
/* ponte invisível: mantém o :hover do li enquanto o rato viaja do link até ao dropdown */
.main-menu ul li.submenu-mega > a::before{
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 40px;
}

/* Invisible bridge: extend hover zone above dropdown content */
.mega-dropdown::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    height: 20px;
}

.mega-dropdown{
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #0f0f0f;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    transform: translateY(8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, pointer-events 0s 0.3s;
    z-index: 1000;
}

.main-menu ul li.submenu-mega:hover > .mega-dropdown{
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, pointer-events 0s 0s;
}

.mega-dropdown > .container{
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    min-height: 340px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.mega-dropdown-links{
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    min-width: 320px;
}

/* Eyebrow dourado — título da coluna (ancora o topo) */
.mega-dropdown-eyebrow{
    display: block;
    text-align: left;
    padding-left: 6px;
    margin-bottom: 26px;
    font-size: 26px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--accent-color, #c9a96e);
}

.mega-dropdown-item{
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
}

/* Vence a regra geral .main-menu ul li a (padding !important + border-radius 16px):
   sem arredondamento (vintage/clean), linhas mais compactas, e padding-left alinhado com o eyebrow */
.main-menu ul li.submenu-mega .mega-dropdown-item{
    padding: 14px 24px 14px 6px !important;
    border-radius: 0 !important;
}

/* Wash de hover: bloco escuro sólido, a toda a largura do item */
.mega-dropdown-item::before{
    content: '';
    position: absolute;
    inset: 0 0 0 0px;
    z-index: 0;
    background: #1f1f1f;
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.22,1,0.36,1);
    pointer-events: none;
}
.mega-dropdown-item:hover::before,
.mega-dropdown-item.active::before{
    opacity: 1;
}

.mega-dropdown-label{
    position: relative;
    z-index: 1;
    display: block;
    text-align: left;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    color: #ffffff;
    transition: color 0.35s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.mega-dropdown-item:hover .mega-dropdown-label,
.mega-dropdown-item.active .mega-dropdown-label{
    color: var(--accent-color, #c9a96e);
    transform: none;
}

/* 3.º nível do mega-menu (Alojamento → Leiria / Coruche): indentado e mais leve,
   para se ler como sub-item sem parecer um link de topo. */
.main-menu ul li.submenu-mega .mega-dropdown-subitem{
    padding: 10px 24px 10px 30px !important;
}

.mega-dropdown-subitem .mega-dropdown-label{
    font-size: 12.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
}

.mega-dropdown-subitem .mega-dropdown-label::before{
    content: '';
    display: inline-block;
    width: 14px;
    height: 1px;
    margin-right: 10px;
    vertical-align: middle;
    background: rgba(255,255,255,0.35);
}

.mega-dropdown-subitem:hover .mega-dropdown-label::before,
.mega-dropdown-subitem.active .mega-dropdown-label::before{
    background: var(--accent-color, #c9a96e);
}

/* Menu mobile: mesmo 3.º nível */
.mobile-submenu li.mobile-submenu-sub a{
    padding-left: 26px;
    font-size: 0.86rem;
    opacity: 0.78;
}

.mega-dropdown-preview{
    position: absolute;
    inset: 0 0 0 45%;
    pointer-events: none;
    clip-path: inset(0);
    z-index: 1;
}

.mega-dropdown-preview img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.15s ease;
}

.mega-dropdown-preview::before{
    content: '';
    position: absolute;
    inset: -1px;
    z-index: 1;
    background: linear-gradient(to right, rgb(15, 15, 15) 0%, rgb(15, 15, 15) 10%, rgba(15, 15, 15, 0.95) 20%, rgba(15, 15, 15, 0.7) 45%, rgba(15, 15, 15, 0.3) 70%, rgba(15, 15, 15, 0.1) 90%, rgba(15, 15, 15, 0) 100%);
}

/* Override: prevent default submenu ul styles on mega */
.main-menu ul li.submenu-mega > .mega-dropdown ul{
    all: unset;
}

.main-menu ul li.submenu-mega:hover > ul{
    visibility: hidden;
    opacity: 0;
}

@media (max-width: 991px){
    .mega-dropdown{
        position: relative;
        padding: 15px;
        background: rgba(15, 15, 15, 0.95);
    }
    .mega-dropdown > .container{
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
    }
    .mega-dropdown-links{
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-bottom: 12px;
    }
    .mega-dropdown-preview{
        display: none;
    }
}

/* ── Mobile menu ── */
.mobile-menu-toggle{
    display: none;
    background: var(--accent-color);
    border: 0;
    padding: 0;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: background 0.25s ease;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover){
    .mobile-menu-toggle:hover{
        filter: brightness(1.08);
    }
}

.mobile-menu-toggle span{
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white-color);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2){
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-backdrop{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99998 !important;
}

.mobile-menu-backdrop.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 360px);
    background: #0f0f0f;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 99999 !important;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
}

.mobile-menu.is-open{
    transform: translateX(0);
}

.mobile-menu-inner{
    padding: 90px 0 30px;
}

.mobile-menu-list{
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-item{
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-row{
    display: flex;
    align-items: stretch;
}

.mobile-menu-link,
.mobile-menu-item > a.mobile-menu-link{
    flex: 1;
    display: block;
    padding: 16px 22px;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover){
    .mobile-menu-link:hover,
    .mobile-menu-link:focus-visible{
        color: var(--accent-color);
        background: rgba(255, 255, 255, 0.02);
    }
}

.mobile-menu-expand{
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.6);
    width: 52px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.25s ease;
    flex-shrink: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover){
    .mobile-menu-expand:hover{
        color: var(--accent-color);
    }
}

.mobile-menu-item.is-open > .mobile-menu-row .mobile-menu-expand{
    transform: rotate(180deg);
    color: var(--accent-color);
}

.mobile-submenu{
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: max-height 0.35s ease;
}

.mobile-menu-item.is-open > .mobile-submenu{
    max-height: 800px;
}

.mobile-submenu li a{
    display: block;
    padding: 13px 22px 13px 38px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.25s ease, padding-left 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-submenu li:first-child a{
    border-top: 0;
}

@media (hover: hover){
    .mobile-submenu li a:hover,
    .mobile-submenu li a:focus-visible{
        color: var(--accent-color);
        padding-left: 44px;
    }
}

.mobile-menu-lang{
    display: flex;
    gap: 8px;
    padding: 24px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 10px;
}

.mobile-lang-item{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white-color);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.mobile-lang-item{
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover){
    .mobile-lang-item:hover,
    .mobile-lang-item:focus-visible{
        background: var(--accent-color);
        color: var(--white-color);
    }
}

body.mobile-menu-open{
    overflow: hidden;
}

@media (max-width: 991px){
    .mobile-menu-toggle{
        display: inline-flex;
    }

    .navbar .main-menu.navbar-collapse{
        display: none !important;
    }

    header.main-header .navbar .container{
        justify-content: space-between;
    }
}

@media (min-width: 992px){
    .mobile-menu,
    .mobile-menu-backdrop{
        display: none;
    }
}



/************************************/
/***       05. HERO	      ***/
/************************************/



.hero-slide {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Imagem de fundo */
.hero-bg-picture,
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
  transform: translateZ(0);
  will-change: transform;
  pointer-events: none;
}

/* Overlay */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgb(30 29 29 / 90%) 0%, /* topo mais leve */ rgba(16, 16, 16, 0.526) 50%, /* meio mais marcado */ rgb(32 31 30 / 94%) 100% /* base mais intensa */);
  mix-blend-mode: normal;
  pointer-events: none;
}

/* Banner da homepage: overlay mais leve que o das page-headers (pedido do cliente,
   para a foto respirar). Restrito a .hero-slide — só o slider da home o usa. */
.hero-slide .hero-bg-overlay {
  background: linear-gradient(180deg, rgb(30 29 29 / 72%) 0%, rgba(16, 16, 16, 0.38) 50%, rgb(32 31 30 / 78%) 100%);
}

/* Conteúdo sempre à frente */
.hero-slide .container,
.hero-slide .hero-content,
.hero-slide .section-title,
.hero-slide .hero-btn {
  position: relative;
  z-index: 2;
}

/************************************/
/***       05. About us css	      ***/
/************************************/

.about-us{
	padding: 100px 0;
}

.about-us-images{
	display: flex;
	flex-wrap: wrap;
	margin-right: 15px;
}

.about-image-box{
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.about-image-1{
	width: 100%;
	max-width: 413px;
}

.about-image-1 figure,
.about-image-2 figure{
	display: block;
	border-radius: 20px;
}

.about-image-1 img,
.about-image-2 img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.about-image-1 img{
	aspect-ratio: 1 / 1.332;
}

.about-us-circle{
	margin-top: 80px;
}

.about-us-circle a{
	display: block;
	border-radius: 50%;
}

.about-us-circle a img{
	width: 100%;
	max-width: 120px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

.about-us-circle a:hover img{
	animation-play-state: paused;
}

.about-image-2{
	position: relative;
	width: 100%;
	max-width: 395px;
	/* margin: -245px 0 0 auto; */
	z-index: 1;
}

.about-image-2 figure{
	border: 6px solid var(--bg-color);
}

.about-image-2 img{
	aspect-ratio: 1 / 1.14;
	border-radius: 14px;
}

.about-us-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.about-us-list{
	width: calc(100% - 210px);
}

.about-us-list h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.about-us-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-us-list ul li{
	position: relative;
	line-height: 1.4em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.about-us-list ul li:last-child{
	margin-bottom: 0;
}

.about-us-list ul li::before{
	content: '\f058';
	font-family: 'Font Awesome 7 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.years-experience-box{
	position: relative;
	width: 180px;
	background: var(--primary-color);
	border-radius: 20px;
	text-align: center;
	padding: 30px;
	overflow: hidden;
}

.years-experience-box::before{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    background-color: var(--accent-color);
    border-radius: 500px 500px 0 0;
    transition: all 0.4s ease-in-out;
}

.years-experience-box:hover:before{
	height: 100%;
	border-radius: 0;
}

.years-experience-box h2{
	position: relative;
	font-size: 40px;
	margin-bottom: 5px;
	color: var(--white-color);
	z-index: 1;
}

.years-experience-box p{
	position: relative;
	color: var(--white-color);
	margin: 0;
	z-index: 1;
}

.about-item-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.about-us-item{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.about-us-item .icon-box{
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	overflow: hidden;
}

.about-us-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.about-us-item:hover .icon-box::before{
	transform: scale(1);
}

.about-us-item .icon-box img{
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.about-us-item-content{
	width: calc(100% - 65px);
}

.about-us-item-content h3{
	font-size: 20px;
	line-height: 1.3em;
}

.about-us-btn{
	margin-top: 40px;
}

/************************************/
/***      06. Our Services css    ***/
/************************************/

.our-services{
	background: var(--secondary-color);
	padding: 100px 0;
}

.service-item{
    position: relative;
	border-radius: 0px;
    /* height: calc(100% - 30px); */
    margin-bottom: 30px;
    overflow: hidden;
}

.service-image a,
.service-image figure{
    display: block;
    cursor: none;
}

.service-image figure::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0px;
	background: linear-gradient(181deg, transparent 62.46%, rgb(15 14 14 / 86%) 85.88%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-image img{
    width: 100%;
    aspect-ratio: 1 / 1.5;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img{
	transform: scale(1.1);
}

.ref{
	font-weight: 400;
	font-size: 12px;
}
.service-body{
	position: absolute;
	left: 15px;
	bottom: 15px;
	right: 15px;
	/* display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px; */
	z-index: 1;
}

.service-content{
	width: 100%;
}

.service-content h3{
	font-weight: 600;
	font-size: 19px;
	line-height: 1.2em;
	color: var(--white-color);
}

.service-content h3 a{
	color: inherit;
}

.service-btn a{
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover{
	background: var(--white-color							);
}

.service-btn a img{
	width: 100%;
	max-width: 12px;
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover img{
	filter: brightness(1) invert(1);
	transform: rotate(45deg);
}

.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p{
	color: var(--primary-color);
	margin-bottom: 0;
}

.section-footer-text span{
	font-size: 16px;
	font-weight: 600;
	background: var(--accent-color);
	color: var(--white-color);
	padding: 1px 10px;
	border-radius: 100px;
	margin-right: 5px;
	transition: all 0.4s ease-in-out;
}

.section-footer-text p a{
	font-family: var(--accent-font);
	font-style: italic;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--primary-color);
}

.dark-section .section-footer-text p a,
.dark-section .section-footer-text p{
	color: var(--white-color);
}

.dark-section .section-footer-text p a:hover{
	color: var(--accent-color);
}


/************************************/
/***     07. Why choose us css    ***/
/************************************/

.why-choose-us{
	padding: 100px 0;
}

.why-choose-item{
	display: flex;
    flex-wrap: wrap;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.why-choose-item:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.why-choose-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
	height: 50px;
	width: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	overflow: hidden;
}

.why-choose-item .icon-box::before{
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
	bottom: 0;
    border-radius: 50%;
    background-color: var(--primary-color);
	transform: scale(0);
    transition: all 0.4s ease-in-out;
    height: 100%;
	height: 100%;
}

.why-choose-item:hover .icon-box::before{
	transform: scale(1);
}

.why-choose-item .icon-box img{
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.why-choose-item-content{
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.why-choose-item-content h3{
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
}

.why-choose-item-content p{
	margin: 10px 0 0 0;
}

.why-choose-images{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-left: 15px;
}

.why-choose-image-box-1,
.why-choose-image-box-2{
	width: calc(50% - 15px);
}

.why-choose-image{
	position: relative;
}

.why-choose-image figure{
	display: block;
	border-radius: 20px;
}

.why-choose-image figure img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-image-box-1 .why-choose-image figure img{
	aspect-ratio: 1 / 1.44;
}

.why-choose-cta-box{
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: var(--divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 15px;
	z-index: 1;
}

.why-choose-cta-box .icon-box{
	position: relative;
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.why-choose-cta-box:hover .icon-box{
	background: var(--primary-color);
}

.why-choose-cta-box .icon-box img{
	max-width: 20px;
}

.why-choose-cta-content{
	width: calc(100% - 55px);
}

.why-choose-cta-content p{
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 0;
}

.google-rating-box{
	background-color: var(--primary-color);
	border-radius: 20px;
	padding: 20px;
	margin-top: 30px;
}

.google-rating-header{
	display: flex;
	margin-bottom: 10px;
}

.google-rating-header .icon-box{
	margin-right: 10px;
}

.google-rating-header .icon-box img{
	max-width: 40px;
}

.google-rating-content p{
	color: var(--white-color);
	margin-bottom: 5px;
}

.google-rating-content p:last-child{
	margin-bottom: 0;
}

.google-rating-content i{
	color: inherit;
	margin-right: 2px;
}

.google-rating-content i:last-child{
	margin-right: 0;
}

.google-rating-box .satisfy-customer-image figure,
.google-rating-box .satisfy-customer-image.add-more{
	width: 50px;
	height: 50px;
}

.google-rating-box .google-rating-content{
	margin-bottom: 20px;
}

.contact-us-circle a{
	display: inline-block;
	border-radius: 50%;
}

.contact-us-circle a img{
	width: 100%;
	max-width: 120px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.contact-us-circle a:hover img{
	animation-play-state: paused;
}

.why-choose-image-box-2 .why-choose-image{
	margin-top: 40px;
}

.why-choose-image-box-2 .why-choose-image figure img{
	aspect-ratio: 1 / 1.566;
}


/************************************/
/***   08. Our Club Benefits css  ***/
/************************************/

.what-we-do{
	position: relative;
	padding: 100px 0;
}

.what-we-do-image{
	position: relative;
	padding: 0 80px 0 95px;
	margin-right: 30px;
}

.get-started-circle{
	position: absolute;
	left: 0;
	top: 85px;
}

.get-started-circle img{
	width: 100%;
	max-width: 160px;
	animation: infiniterotate 20s infinite linear;
}

.what-we-do-img{
	position: relative;
}

.what-we-do-img::before{
	content: '';
	position: absolute;
	top: 0px;
	bottom: 0;
	left: -15px;
	right: 0;
	width: 100%;
	height: 100%;
	border: 1px solid var(--accent-color);
	border-radius: 205px;
	z-index: 0;
}

.what-we-do-img figure{
	display: block;
	border-radius: 205px;
}

.what-we-do-img img{
	width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1.54;
    object-fit: cover;
    border-radius: 205px;
}

.company-experience{
	position: absolute;
	right: 0;
	bottom: 95px;
	width: 190px;
	background: var(--accent-color);
	border: 5px solid var(--primary-color);
	border-radius: 6px;
	padding: 15px 12px;
	animation: experienceobject 3s infinite linear alternate;
	z-index: 1;
	overflow: hidden;
}
.company-experience-2{
	position: absolute;
	left: 25px;
	bottom: 25px;
	width: 220px;
	background: var(--primary-color);
	border-radius: 6px;
	padding: 20px;
	z-index: 1;
	overflow: hidden;
}

@keyframes experienceobject{
	50%{
		right: 40px;
	}
}

.company-experience:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--bg-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.company-experience:hover::before{
	top: auto;
    height: 100%;
}

.company-experience .icon-box{
	position: relative;
	margin-bottom: 10px;
	z-index: 1;
}

.company-experience .icon-box img{
	width: 100%;
	max-width: 40px;
	transition: all 0.4s ease-in-out;
}

.company-experience:hover .icon-box img{
	filter: brightness(1) invert(1);
}

.company-experience-content{
	position: relative;
	z-index: 1;
}

.company-experience-content h3{
	color: var(--white-color);
	font-size: 40px;
	margin-bottom: 5px;
	transition: all 0.4s ease-in-out;
}

.company-experience-content p{
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.company-experience-content-2 h3{
	color: var(--accent-color);
	font-size: 40px;
	margin-bottom: 5px;
	transition: all 0.4s ease-in-out;
}

.company-experience-content-2 p{
	color: var(--accent-color);
	line-height: normal;
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.company-experience:hover .company-experience-content h3,
.company-experience:hover .company-experience-content p{
	color: var(--primary-color);
}

.what-we-body{
	background-color: var(--dark-divider-color);
	border-radius: 20px;
	padding: 30px;
}

.what-we-body-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 15px;
}

.what-we-body-divider{
    flex: 0 0 100%;          /* ocupa a largura toda → força a quebra entre linhas */
    height: 1px;
    background-color: var(--dark-divider-color);  /* mesmo risco do design */
}

.what-we-body-item{
	width: calc(50% - 15px);
}

.what-we-body-header{
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.what-we-body-header .icon-box{
	margin-right: 15px;
}

.what-we-body-header .icon-box img{
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
}

.what-we-body-item:hover .icon-box img{
    filter: brightness(0) invert(1);
    transform: rotateY(180deg);
}

.what-we-body-title{
	width: calc(100% - 0);
}

.what-we-body-title h3{
	color: var(--white-color);
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 800;
}

/* O <div> entra aqui porque o editor cola texto do Word como <div> em vez de <p>,
   e o texto ficava cinzento-escuro sobre fundo escuro, ilegível. */
.what-we-body-content p,
.what-we-body-content div{
	color: var(--white-color);
	margin: 0;
	font-size: 14px;
	opacity: 0.75;
}

.what-we-list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.what-we-list ul li{
	position: relative;
    width: calc(50% - 15px);
    color: var(--white-color);
    text-transform: uppercase;
    line-height: normal;
    padding-left: 30px;
    font-size: 12px;
    font-weight: 700;
}

.what-we-list ul li::before{
	content: '\f058';
    font-family: 'Font Awesome 7 Free';
	position: absolute;
    font-size: 18px;
	font-weight: 400;
    color: var(--accent-color);
    top: 2px;
    left: 0;
}

/************************************/
/***   09. Plan Your Ride css     ***/
/************************************/

.our-facts{
	padding: 100px 0;
}

.facts-image{
	position: relative;
	height: 100%;
}

.facts-image figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.facts-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.912;	
	object-fit: cover;
	border-radius: 20px;
}

.facts-cta-box{
	position: absolute;
	bottom: 60px;
	left: 60px;
	right: 60px;
	background-color: var(--primary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	padding: 30px;
	z-index: 1;
}

.facts-cta-box .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.facts-cta-box:hover .icon-box{
	background: var(--white-color);
}

.facts-cta-box .icon-box img{
	width: 100%;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}

.facts-cta-box:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.facts-cta-content{
	width: calc(100% - 80px);
}

.facts-cta-content p{
	color: var(--white-color);
	margin-bottom: 5px;
}

.facts-cta-content h3{
	font-size: 26px;
	color: var(--white-color);
}

.facts-cta-content h3 a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.facts-cta-content h3 a:hover{
	color: var(--accent-color);
}

.facts-content{
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 50px 30px;
}

.our-facts-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.facts-item{
	width: calc(50% - 15px);
}

.facts-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.facts-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.facts-item:hover .icon-box:before{
	transform: scale(1);
}

.facts-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.w-80{
	width: 80%;
}
.facts-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.facts-item-content p{
	margin: 0;
}

/************************************/
/***     10. Our Milestones css   ***/
/************************************/

.our-milestones{
	padding: 100px 0;
}

.our-milestones-image{
	margin-right: 65px;
	margin-bottom: -100px;
}

.our-milestones-image img{
	width: 100%;
	aspect-ratio: 1 / 1.49;
	object-fit: cover;
}

.milestones-counter-box{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	border-top: 1px solid #423a3412;
	/* border-bottom: 1px solid #423a343d; */
	padding: 25px 0;
	margin: 25px 0;
}

.milestone-counter-item{
	width: calc(33.33% - 20px);
}

.milestone-counter-item h2{
	font-weight: 800;
	letter-spacing: -1px;
	font-size: 40px;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.milestone-counter-item p{
	color: var(--primary-color);
	margin: 0;
	letter-spacing: -0.5px;
}

.our-milestones-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.our-milestones-list ul li{
	letter-spacing: -0.5px;
    width: calc(50% - 15px);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--primary-color);
    background: url(../images/icon-check.svg) no-repeat;
    background-position: left center;
    background-size: 18px auto;
    padding-left: 25px;
}

.our-milestones-btn{
	margin-top: 40px;
}
/************************************/
/*** 	11. Our Pricing css		  ***/
/************************************/

.our-pricing{
	padding: 100px 0;
}

.pricing-box{
	background-color: var(--secondary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-box .pricing-header{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}
	
.pricing-box .pricing-header h3{
	font-size: 20px;
}

.pricing-content{
	margin-bottom: 30px;
}

.pricing-content h2{
	font-size: 38px;
	display: flex;
	align-items: center;
	gap: 10px 30px;
	margin-bottom: 30px;
}

.pricing-content h2 span{
	font-size: 16px;
	font-weight: 600;
	background: var(--divider-color);
	border-radius: 10px;
	padding: 14px 30px;
	line-height: normal;
}

.pricing-content p{
	margin-bottom: 0;
}

.pricing-btn{
	margin-bottom: 40px;
}

.pricing-btn .btn-default{
	display: block;
	text-align: center;
	padding: 18px;
}

.pricing-btn .btn-default::before{
	display: none;
}

.pricing-box.highlighted-box .pricing-btn .btn-default{
	background: var(--secondary-color);
	color: var(--primary-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default:hover{
	color: var(--secondary-color);
}

.pricing-list ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.pricing-list ul li{
	line-height: 1.4em;
	background: url('../images/icon-check.svg') no-repeat;
	background-position: left center;
	background-size: 20px auto;
	padding-left: 30px;
	margin-bottom: 15px;
}

.pricing-list ul li:last-child{
	margin-bottom: 0;
}

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

.pricing-box.highlighted-box .pricing-header{
	border-color: var(--dark-divider-color);
}

.pricing-box.highlighted-box .pricing-content h2 span{
	background: var(--dark-divider-color);
}

.pricing-box.highlighted-box .pricing-header h3,
.pricing-box.highlighted-box .pricing-content h2,
.pricing-box.highlighted-box .pricing-content p,
.pricing-box.highlighted-box .pricing-list ul li{
	color: var(--secondary-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default::after{
	background: var(--primary-color);
}

.pricing-benefit-list{
	margin-top: 30px;
}

.pricing-benefit-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li{
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img{
	max-width: 20px;
	margin-right: 15px;
}

/************************************/
/*** 	12. Our Benefits css	  ***/
/************************************/

.our-benefits{
	padding: 100px 0;
	background-color: var(--white-color);
}

.our-benefits .col-lg-6{
	display: flex;
	align-items: center;
}

.benefits-content{
	margin-right: 20px;
	width: 100%;
}

@media (max-width: 991px){
	.our-benefits .col-lg-6{
		display: block;
	}
}

.benefits-list{
	margin-bottom: 40px;
}

.benefits-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.benefits-list ul li{
    background: url('../images/icon-check.svg') no-repeat;
	background-position: left center;
	background-size: 20px auto;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 8px;
}

.benefits-list ul li:last-child{
	margin-bottom: 0;
}

.benefits-item-list{
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.benefits-item{
	border: 1px solid #0000000f;
    position: relative;
    width: calc(100% - 15px);
    background-color: #f4f1e95e;
    border-radius: 8px;
    padding: 30px;
    overflow: hidden;
}

.benefits-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
	border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.benefits-item:hover::before{
	height: 100%;
	border-radius: 0;
}

.benefits-item .icon-box{
	position: relative;
	margin-bottom: 40px;
	z-index: 1;
}

.benefits-item .icon-box img{
	width: 100%;
	max-width: 60px;
	transition: all 0.4s ease-in-out;
}

.benefits-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.benefits-item-content h3,
.benefits-item-content p{
	position: relative;
	z-index: 1;
}

.benefits-item-content h3{
	font-size: 20px;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.benefits-item-content p{
	font-size: 15px;
	line-height: 22px;
	color: var(--primary-color);
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.benefits-item:hover .benefits-item-content h3,
.benefits-item:hover .benefits-item-content p{
	color: var(--white-color);
}

.benefits-box .section-footer-text{
	margin-top: 40px;
}

/************************************/
/***	13. Our Testimonials css  ***/
/************************************/

.our-testimonials{
	position: relative;
	padding: 100px 0;
	z-index: 1;
}

.testimonials-image-box{
	position: relative;
	margin-right: 20px;
}

.testimonials-image-box figure{
	display: block;
	border-radius: 12px;
}

.testimonials-image-box figure img{
	width: 100%;
	aspect-ratio: 1 / 1.1;
	object-fit: cover;
	border-radius: 12px;
}

.testimonials-rating-box{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	background: var(--primary-color);
	border-radius: 12px;
	display: flex;
	align-items: center;
	padding: 20px;
	z-index: 1;
}

.testimonials-rating{
	margin-right: 8px;
}

.testimonials-rating-box i{
	font-size: 18px;
	color: var(--accent-color);
	margin-right: 3px;
}

.testimonials-rating-box i:last-child{
	margin-right: 0;
}

.testimonials-rating-content p{
	color: var(--white-color);
	line-height: normal;
	margin: 0;
}

.testimonials-rating-content p span{
	color: var(--accent-color);
	font-size: 20px;
	font-weight: 600;
	margin-right: 5px;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-content{
	margin-bottom: 40px;
}

.testimonial-content p{
	margin: 0;
}

.testimonial-author{
	display: flex;
	align-items: center;
}

.testimonial-author .author-image{
	margin-right: 15px;
}

.testimonial-author .author-image figure{
	border-radius: 12px;
}

.testimonial-author .author-image img{
	max-width: 60px;
	width: 100%;
	border-radius: 12px;
}

.testimonial-author .author-content{
	width: calc(100% - 75px);
}

.testimonial-author .author-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.testimonial-author .author-content p{
	margin: 0;
}

.testimonial-btn{
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	margin-top: 30px;
	z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
	position: relative;
	width: 40px;
	height: 40px;
	background-color: var(--bg-color);
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next{
	margin-left: 15px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
	background: var(--primary-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 11px auto;
    display: flex;
    align-items: center;
    justify-content: center;
	transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before{
	transform: rotate(225deg);
}

.testimonial-slider .testimonial-button-next:hover::before,
.testimonial-slider .testimonial-button-prev:hover::before{
	filter: brightness(0) invert(1);
}

/************************************/
/*** 	 	14. Our Faqs css	  ***/
/************************************/

.our-faqs{
	padding: 100px 0;
	background-color: var(--white-color);
}

.faqs-images{
	margin-right: 15px;
}

.faqs-image-box-2,
.faqs-image-box-1,
.faqs-images{
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 12px;
}

.faqs-image-box-1{
	width: calc(47% - 15px);
}

.faqs-image-box-2{
	width: calc(53% - 15px);
}

.faqs-img{
	width: 100%;
}

.faqs-img figure{
	display: block;
	border-radius: 8px;
}

.faqs-img img{
	width: 100%;
	aspect-ratio: 1 / 0.922;
	border-radius: 8px;
}

.faqs-image-box-2 .faqs-img img{
	aspect-ratio: 1 / 1.66;
}

.about-contact-box{
	display: inline-flex;
	align-items: center;
	text-align: left;
}

.about-contact-box .icon-box{
	position: relative;
    background: var(--accent-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.about-contact-box .icon-box img{
	max-width: 25px;
}

.about-contact-box-content p{
	margin-bottom: 5px;
}

.about-contact-box-content h3{
    font-size: 20px;
}

.about-contact-box-content h3 a{
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.about-contact-box-content h3 a:hover{
	color: var(--accent-color);
}

.faq-accordion .accordion-item{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
	padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button{
    font-size: 18px;
	font-weight: 500;
    line-height: 1.3em;
    color: var(--primary-color);
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
	letter-spacing: -0.5px;
}

.faq-accordion .accordion-button:not(.collapsed){
    margin-bottom: 15px;
	font-weight: 600;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
	transform: rotate(135deg);
	background-color: var(--primary-color);
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10px auto;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    transform: rotate(-45deg);
}

.faq-accordion .accordion-item .accordion-body{
	padding-right: 30px;
}

.accordion-item .accordion-body p{
	color: var(--primary-color);
    margin-bottom: 15px;
	font-weight: 300;
	font-size: 15px;
}

.accordion-item .accordion-body p:last-child{
    margin-bottom: 0;
}

/************************************/
/*** 	  15. Our Gallery css	  ***/
/************************************/

.our-gallery{
	padding: 100px 0;
}

.our-gallery .container-fluid{
	max-width: 1760px;
	margin: 0 auto;
}


.gallery-slider .photo-gallery a{
	display: block;
	cursor: none;
}

.gallery-slider .photo-gallery img{
	aspect-ratio: 1 / 1.35;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.gallery-slider .photo-gallery img:hover{
	filter: brightness(50%);
}

.gallery-slider .gallery-button-next,
.gallery-slider .gallery-button-prev{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 55px;
	width: 55px;
	background: var(--accent-color);
	border: 5px solid var(--white-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
	z-index: 5;
}

.gallery-button-prev{
	left: 16.406vw;
}

.gallery-button-next{
	right: 16.406vw;
}

.gallery-slider .gallery-button-next:hover,
.gallery-slider .gallery-button-prev:hover{
	background: var(--primary-color);
}

.gallery-slider .gallery-button-next::before,
.gallery-slider .gallery-button-prev::before{
    content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: rotate(45deg);
    background: url("../images/arrow-white.svg") no-repeat center center;
    background-size: 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.gallery-slider .gallery-button-prev::before{
	transform: rotate(225deg);
}

.our-gallery .section-footer-text{
	margin-top: 60px;
}

/************************************/
/*** 	 16. What We Do css		  ***/
/************************************/

.our-process{
    padding: 100px 0;
}

.process-counter{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 60px;
	margin-bottom: 60px;
}

.process-counter-item{
	width: calc(33.33% - 40px);
    position: relative;
}

.process-counter-item::before{
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background-color: var(--dark-divider-color);
}

.process-counter-item:last-child::before,
.process-counter-item:nth-of-type(3n + 3)::before{
    display: none;
}

.process-counter-item h2{
	color: var(--white-color);
    font-size: 40px;
    margin-bottom: 5px;
}

.process-counter-item p{
	color: var(--white-color);
	text-transform: capitalize;
    margin-bottom: 0;
}

.our-process-steps{
    margin-left: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px 0;
}

.process-step-item{
	width: 100%;
    background-color: var(--dark-divider-color);
    border-radius: 20px;
    padding: 20px 55px 20px 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.process-step-item:nth-of-type(odd){
    margin-left: 120px;
}

.process-step-item:nth-of-type(even){
    margin-right: 120px;
}

.step-item-number{
    background-color: var(--accent-color);
    height: 56px;
    width: 56px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.step-item-number h2{
    font-size: 20px;
    color: var(--white-color);
}

.step-item-content{
    width: calc(100% - 76px);
}

.step-item-content h3{
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
	margin-bottom: 5px;
}

.step-item-content p{
	color: var(--white-color);
    margin-bottom: 0;
}

/************************************/
/*** 	 17. Our Blog css		  ***/
/************************************/

.our-blog{
	padding: 100px 0 70px;
}

.post-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image{
	margin-bottom: 20px;
}

.post-featured-image a{
    cursor: none;
    display: block;
	border-radius: 0px;
    overflow: hidden;
}

.post-featured-image figure{
	display: block;
}

.post-featured-image img{
	width: 100%;
    aspect-ratio: 1 / 1.3;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-content{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.post-item-content h2{
    font-size: 18px;
	line-height: 1.4em;
	margin-bottom: 5px;
}

.post-item-content h2 a{
	display: inline-block;
    color: inherit;
}

.post-item-content p{
	font-size: 13px;
    line-height: 17px;
    margin: 0;
    font-weight: 400;
    color: #282525;
	margin-top: 5px;
}


.label{
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 6px 16px;
	background-color: var(--primary-color);
	color: var(--accent-color);
	font-size: 10px;
	font-weight: 500;
	line-height: 1.1em;
	border-radius: 4px;
	text-transform: uppercase;
}

.features{
    font-size: 16px;
	font-weight: 600;
    text-transform: none;
    color: var(--primary-color);
    margin-bottom: 5px;
}


.footer-logo-text{
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 300 !important;
	color: var(--white-color);
}
.border-bottom-light {
    border-bottom: var(--bs-border-width) var(--bs-border-style) #dee2e61f !important;
}
/************************************/
/***   		18. Footer css		  ***/
/************************************/

.main-footer{
	padding: 50px 0 0;
}

.footer-logo{
	margin-bottom: 60px;
}

.footer-logo img{
	width: 100%;
	max-width: 162px;
}

.footer-menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.footer-menu ul li{
	display: inline-block;
	line-height: 1.5em;
	color: var(--white-color);
	text-transform: capitalize;
}

.footer-menu ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li a:hover{
	color: var(--accent-color);
}

.footer-contact-item{
	margin-top: 35px;
}

.footer-contact-item h3{
	font-size: 20px;
	color: var(--white-color);
}

.footer-contact-item h3 a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item h3 a:hover{
	color: var(--accent-color);
}

.footer-contact-item p{
	color: var(--white-color);
	margin: 10px 0 0;
}
.footer-contact-item p a{
	color: var(--white-color);
	margin: 10px 0 0;
	font-weight: 300;
	font-size: 14px;
}

.footer-newsletter-info{
	margin-bottom: 30px;
}

.footer-newsletter-info h3{
	font-size: 20px;
	color: var(--white-color);
}

.footer-newsletter-info p{
	color: var(--white-color);
	margin: 15px 0 0;
}

.footer-newsletter-form .form-group{
	display: flex;
}

.footer-newsletter-form .form-group .form-control{
	width: 66%;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--white-color);
	background-color: var(--dark-divider-color);
	border: none;
	border-radius: 10px 0 0 10px;
	outline: none;
	box-shadow: none;
	padding: 12px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--white-color);
}

.footer-newsletter-form .form-group .btn-default{
	width: 34%;
	border-radius: 0 10px 10px 0;
}

.footer-social-links{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-top: 50px;
}

.footer-social-links h3{
	font-size: 16px;
	color: var(--white-color);
	text-transform: none;
}

.footer-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li{
	display: inline-block;
	border-radius: 50%;
	margin-right: 15px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	background: var(--white-color);
	color: var(--primary-color);
	border-radius: 4px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
	background: var(--accent-color);
	color: var(--white-color);
}

.footer-social-links ul li a i{
	font-size: 14px;
	color: inherit;
}

.footer-copyright{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	border-top: 1px solid var(--dark-divider-color);
	padding: 22px 0 22px;
	margin-top: 30px;
}

.footer-copyright-text p{
	font-size: 12px;
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-privacy-policy{
	text-align: right;
}

.footer-privacy-policy ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-privacy-policy ul li{
	display: inline-block;
	color: var(--white-color);
	text-transform: capitalize;
	line-height: normal;
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid var(--dark-divider-color);
	transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover{
	color: var(--accent-color);
}

.footer-privacy-policy ul li:last-child{
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}

.footer-privacy-policy ul li a{
	font-size: 12px;
	color: inherit;
}


/************************************/
/*** 	 19. About Us Page css	  ***/
/************************************/

.page-header{
    position: relative;
    background-size: cover;
	/* 280/150 dava 539px — 67% do ecrã num portátil de 800px, com a página
	   toda abaixo da dobra. 175/75 dá ~345px e é igual em todas as páginas. */
	padding: 175px 0 75px;
    overflow: hidden;
}

/* .page-header::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(38, 58, 49, 0.60) 7.55%, transparent 24.9%), linear-gradient(180deg, transparent 44.56%, rgba(38, 58, 49, 0.90) 79.22%);
	height: 100%;
	width: 100%;
	z-index: 1;
} */

.page-header-box{
    position: relative;
	text-align: center;
    z-index: 2;
}

.page-header-box h1{
	display: inline-block;
	color: var(--white-color);
	font-size: 52px;
	line-height: 1.2em;
	letter-spacing: -0.02em;
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box h1 span{
	font-family: var(--accent-font);
	font-style: italic;
	font-weight: 400;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}

.our-approach{
	background-color: var(--white-color);
    padding: 100px 0;
}

.approach-item-list{
    margin-right: 15px;
}

.approach-item{
    background: var(--accent-color);
    border-radius: 20px;
    margin-bottom: 30px;
    padding: 40px;
}

.approach-item:last-child{
    margin-bottom: 0;
}

.approach-item:nth-child(even){
    background-color: var(--primary-color);
}

.approach-item .icon-box{
    position: relative;
	display: inline-block;
	padding: 0 10px 10px 0;
    margin-bottom: 30px;
}

.approach-item .icon-box img{
	width: 100%;
	max-width: 50px;
}

.approach-item-content h3{
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.approach-item-content p{
    color: var(--white-color);
    margin-bottom: 0;
}

.approach-image-box{
    position: relative;
    height: 100%;
}

.approach-image-box figure{
    display: block;
    height: 100%;
    border-radius: 20px;
}

.approach-image-box img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.88;
    object-fit: cover;
    border-radius: 20px;
}

.approach-image-content{
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    border-radius: 20px;
    padding: 30px;
    z-index: 1;
}

.approach-image-content h3{
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.approach-image-content p{
    color: var(--white-color);
    margin-bottom: 0;
}

.our-team{
	padding: 100px 0 70px;
}

.team-item{
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.team-image{
	position: relative;
}

.team-image a{
    display: block;
	cursor: none;
}

.team-image img{
    width: 100%;
	aspect-ratio: 1 / 1.093;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img{
	transform: scale(1.1);
}

.team-social-icon{
	position: absolute;
	right: 30px;
	bottom: 0;
	left: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon{
	bottom: 30px;
	opacity: 1;
	visibility: visible;
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 20px;
}

.team-social-icon ul li a{
	width: 40px;
	height: 40px;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover{
	background: var(--white-color);
	color: var(--primary-color);
}

.team-social-icon ul li a i{
	color: inherit;
	font-size: 18px;
}

.team-content{
	position: relative;
	text-align: center;
	padding: 20px;
	overflow: hidden;
}

.team-content::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.team-item:hover .team-content::before{
	height: 100%;
}

.team-content h2{
	position: relative;
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.team-content h2 a{
	color: inherit;
}

.team-content p{
	position: relative;
	text-transform: capitalize;
	margin: 0;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-content h2{
	color: var(--accent-color);
}

.team-item:hover .team-content p{
	color: var(--white-color);
}

.confident-riders{
	padding: 100px 0 70px;
}

.confident-riders-item{
	position: relative;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 25px;
}

.confident-riders-item::before{
	content: '';
	position: absolute;
	right: -15px;
	top: 50%;
	transform: translateY(-50%);
	border-right: 1px solid var(--divider-color);
	width: 1px;
	height: 200px;
}

.confident-riders-item:nth-child(3n + 3):before{
	border: none;
}

.confident-riders .col-lg-4:last-child .confident-riders-item::before{
	border: none;
}

.confident-riders-item .icon-box{
	margin-bottom: 40px;
}

.confident-riders-item .icon-box img{
	max-width: 80px;
}

.confident-riders-content h3{
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 25px;
}

.confident-riders-content p{
	margin: 0;
}

/************************************/
/*** 	 20. Services Page css	  ***/
/************************************/

.page-services{
	padding: 100px 0 70px;
}

/************************************/
/*** 	 21. Service Single css	  ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.page-single-sidebar{
    position: sticky;
    top: 20px;
	margin-right: 20px;
}

.page-category-list{
	background-color: var(--white-color);
    border-radius: 20px;
    margin-bottom: 60px;
	overflow: hidden;
}

.page-category-list h3{
	color: var(--white-color);
	font-size: 20px;
	background-color: var(--primary-color);
	padding: 25px 30px;
}

.page-category-list ul{
	list-style: none;
    margin: 0;
	padding: 30px;
}

.page-category-list ul li{
    margin-bottom: 20px;
}

.page-category-list ul li:last-child{
    margin: 0;
}

.page-category-list ul li a{
	position: relative;
    display: block;
    line-height: normal;
    text-transform: capitalize;
    color: var(--primary-color);
    background: var(--bg-color);
    border-radius: 10px;
    padding: 19px 45px 19px 20px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.page-category-list ul li:hover a{
    color: var(--white-color);
}

.page-category-list ul li a::before{
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0px, -50%);
    background: url('../images/arrow-primary.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease-in-out;
}

.page-category-list ul li a:hover::before{
    filter: brightness(0) invert(1);
	transform: translate(0px, -50%) rotate(45deg);
}

.page-category-list ul li a::after{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.page-category-list ul li:hover a::after{
	top: 0;
	height: 100%;
}

.sidebar-cta-box{
	border-radius: 10px;
	overflow: hidden;
}

.sidebar-cta-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	background-color: var(--accent-color);
	padding: 20px 30px;
}

.sidebar-cta-header .satisfy-customer-image figure,
.sidebar-cta-header .satisfy-customer-image.add-more{
	height: 40px;
	width: 40px;
}

.sidebar-cta-content p{
	color: var(--white-color);
	margin: 0;
}

.sidebar-contact-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	background-color: var(--primary-color);
	padding: 30px;
}

.sidebar-contact-item{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.sidebar-contact-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.sidebar-contact-item .icon-box img{
	width: 100%;
	max-width: 24px;
}

.sidebar-contact-content{
	width: calc(100% - 65px);
}

.sidebar-contact-content p{
	color: var(--white-color);
	margin-bottom: 5px;
}

.sidebar-contact-content h3{
	color: var(--white-color);
	font-size: 18px;
}

.sidebar-contact-content h3 a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.sidebar-contact-content h3 a:hover{
	color: var(--accent-color);
}

.page-single-image{
    margin-bottom: 40px;
}

.page-single-image figure{
    display: block;
    border-radius: 20px;
}

.page-single-image img{
    width: 100%;
    aspect-ratio: 1 / 0.538;
    object-fit: cover;
    border-radius: 20px;
}

.service-entry{
    margin-bottom: 60px;
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry h2{
    font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.service-entry h2 span{
	font-family: var(--accent-font);
	font-weight: 400;
	font-style: italic;
}

.service-entry h3{
	font-size: 20px;
	margin-bottom: 15px;
	line-height: 1.4em;
}

.service-entry h2:last-child,
.service-entry h3:last-child,
.service-entry p:last-child{
	margin-bottom: 0;
}

.service-entry ul{
    list-style: none;
	margin: 30px 0 0;
	padding: 0;
}

.service-entry ul li{
	position: relative;
	color: var(--primary-color);
    line-height: 1.5em;
	background: url('../images/icon-check.svg') no-repeat;
	background-position: left center;
	background-size: 20px auto;
    padding-left: 30px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child{
	margin-bottom: 0;
}

.service-bonds-box,
.service-experience-box,
.service-facility-box{
	margin-top: 60px;
}

.service-bonds-item-list{
	margin-top: 40px;
}

.service-bond-item{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.service-bond-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.service-bond-item .icon-box img{
	width: 100%;
	max-width: 40px;
}

.service-bonds-item-content{
	width: calc(100% - 60px);
}

.service-bonds-counters{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.bonds-counter-item{
	width: calc(50% - 15px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
}

.bonds-counter-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bonds-counter-counter h2 span{
	font-weight: inherit;
	font-family: inherit;
	font-style: inherit;
}

.bonds-counter-header .icon-box{
	position: relative;
	background: var(--accent-color);
	border-radius: 5px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.bonds-counter-header .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 5px;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.bonds-counter-item:hover .bonds-counter-header .icon-box::before{
	transform: scale(1) rotate(180deg);
}

.bonds-counter-header .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.bonds-counter-list{
	margin-top: 30px;
}

.bonds-counter-list ul{
	margin: 0;
}

.service-experience-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-experience-content,
.service-experience-image{
	width: calc(50% - 15px);
}

.service-experience-item{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	background: var(--white-color);
	border-radius: 20px;
	padding: 30px;
}

.service-experience-item .icon-box{
	position: relative;
	background: var(--accent-color);
	border-radius: 5px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.service-experience-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 5px;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.service-experience-item:hover .icon-box::before{
	transform: scale(1) rotate(180deg);
}

.service-experience-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.experience-item-content{
	width: calc(100% - 70px);
}

.service-experience-image figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.service-experience-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
	border-radius: 20px;
}

.service-facility-body{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
	margin-top: 40px;
}

.service-facility-item{
	width: calc(50% - 15px);
}

.service-facility-item .icon-box{
	margin-bottom: 30px;
}

.service-facility-item .icon-box img{
	width: 100%;
	max-width: 50px;
}

/************************************/
/***   	 22. Blog Archive css	  ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
    color: var(--white-color);
}

/************************************/
/***     23. Blog Single css      ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-single-meta{
	margin-top: 5px;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	border-radius: 20px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.44em;
}

.post-entry h1{
	font-size: 60px;
}

.post-entry h2{
	font-size: 46px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 20px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 18px;
    font-weight: 500;
    line-height: 1.6em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: var(--accent-color) url('../images/icon-blockquote.svg');
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***       24. Team Page css      ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

/************************************/
/***  25. Team Single Page css    ***/
/************************************/

.page-team-single{
	padding: 100px 0;
}

.team-single-image{
	margin-bottom: 60px;
}

.team-single-image figure{
	display: block;
	border-radius: 20px;
}

.team-single-image img{
	width: 100%;
	aspect-ratio: 1 / 1.201;
	object-fit: cover;
	border-radius: 20px;
}

.team-member-about,
.team-member-experience,
.team-member-skills{
	margin-bottom: 60px;
}

.team-contact-list{
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--divider-color);
    border-right: none;
    border-bottom: none;
    border-radius: 20px;
    overflow: hidden;
}

.team-contact-item{
    display: flex;
    align-items: center;
    width: 50%;
    border-right: 1px solid var(--divider-color);
    border-bottom: 1px solid var(--divider-color);
    padding: 30px 25px;
}

.team-contact-item:nth-of-type(-2n + 2){
    border-radius: 0 20px 0 0;
}

.team-contact-item:last-child,
.team-contact-item:nth-child(2n):nth-last-child(2){
    border-radius: 0 0 20px 0;
}

.team-contact-item .icon-box{
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    border-radius: 10px;
    margin-right: 20px;
}

.team-contact-item .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    transform: scale(0);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.team-contact-item:hover .icon-box::before{
    transform: scale(1) rotate(180deg);
}

.team-contact-item .icon-box img{
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
}

.team-contact-content{
    width: calc(100% - 70px);
}

.team-contact-content h3{
    font-size: 20px;
    margin-bottom: 5px;
}

.team-contact-content p{
    margin-bottom: 0;
}

.member-social-list{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
	margin-top: 40px;
}

.member-social-list h3{
	font-size: 20px;
}

.member-social-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.member-social-list ul li{
	display: inline-block;
	margin-right: 10px;
}

.member-social-list ul li:last-child{
	margin: 0;
}

.member-social-list ul li a{
	width: 40px;
	height: 40px;
	color: var(--accent-color);
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.member-social-list ul li a:hover{
	background: var(--accent-color);
	color: var(--white-color);
}

.member-social-list ul li a i{
	color: inherit;
	font-size: 20px;
}

.member-experience-list{
	display: flex;
	flex-wrap: wrap;
	gap: 0 30px;
}

.member-experience-item{
	width: calc(50% - 15px);
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.member-experience-item:nth-last-child(1),
.member-experience-item:nth-last-child(2){
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.member-experience-item .icon-box{
	margin-right: 20px;
}

.member-experience-item .icon-box img{
	width: 100%;
	max-width: 40px;
}

.member-experience-item-content{
	width: calc(100% - 60px);
}

.member-experience-item-content h3{
	font-size: 20px;
}

.member-experience-item-content p{
	margin: 10px 0 0;
}

.member-skill-list{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
}

.skills-progress-bar{
    width: calc(50% - 15px);
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
	gap: 10px;
	margin-bottom: 20px;
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 14px;
	border: 1px solid var(--divider-color);
	background-color: var(--white-color);
	border-radius: 10px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
    position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
    border-radius: 100px;
}

/************************************/
/***  	 26. Pricing Page css	  ***/
/************************************/

.page-pricing{
	padding: 100px 0;
}

/************************************/
/***  27. Testimonials Page css   ***/
/************************************/

.page-testimonials{
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item{
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.testimonial-item .testimonial-quotes{
	margin-bottom: 30px;
}

.testimonial-item .testimonial-quotes img{
	width: 100%;
	max-width: 30px;
}

/************************************/
/*** 	 28. Image Gallery css	  ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 29. Video Gallery css	  ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
	border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  30. FAQs Page css 	  ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.page-faqs .page-single-faqs{
    margin-bottom: 60px;
}

.page-faqs .page-single-faqs:last-child{
    margin-bottom: 0px;
}

/************************************/
/*** 	31. Contact Us Page css	  ***/
/************************************/

.page-contact-us{
	padding: 100px 0;
}

.contact-form{
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.contact-form .section-title{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.contact-form form .form-control{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background-color: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    padding: 17px 20px;
    outline: none;
    box-shadow: none;
}

.contact-form form .form-control::placeholder{
    color: var(--text-color);
}

.contact-form form .btn-default{
	width: 100%;
	padding: 16px;
}

.contact-form form .btn-default::before{
	display: none;
}

.google-map-iframe{
	height: 100%;
	margin-left: 30px;
}

.google-map-iframe iframe{
	width: 100%;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.contact-info-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
    margin-top: 100px;
}

.contact-info-item{
	position: relative;
	width: calc(25% - 22.5px);
	background: var(--white-color);
	border-radius: 20px;
	padding: 30px;
}

.contact-info-item .icon-box{
    position: relative;
    background: var(--accent-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 40px;
}

.contact-info-item .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box::before{
	transform: scale(1);
}

.contact-info-item .icon-box img{
    position: relative;
	width: 100%;
	max-width: 24px;
    z-index: 1;
}

.contact-info-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.contact-info-content p{
	margin-bottom: 2px;
}

.contact-info-content p:last-child{
	margin-bottom: 0;
}

.contact-info-content p a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.contact-info-content p a:hover{
	color: var(--accent-color);
}

/************************************/
/*** 	  32. Error Page css	  ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 55%;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 15px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1024px){

	.main-menu ul li{
		margin: 0;
	}

	.main-menu ul li a{
		padding: 12px 10px !important;
	}

}

@media only screen and (max-width: 991px){

	.btn-default{
		padding: 13px 45px 13px 20px;
	}

	.btn-default::before{
		right: 20px;
	}

	header.main-header{
		margin: 0;
	}

	header.main-header .header-sticky.active{
		top: 0;
	}

	.navbar{
		border-radius: 0;
		padding: 12px 0;
	}

	.header-btn{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-title.section-title-center{
		max-width: 100%;
	}

	.section-content-btn .section-btn{
		margin-top: 20px;
	}
	
	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		margin-bottom: 10px;
	}

	.section-title h1{
		font-size: 45px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.section-title-content{
        margin-top: 10px;
    }

	.section-btn{
        text-align: left;
        margin-top: 15px;
	}

	.hero{
		padding: 300px 0 100px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 300px 0 100px;
		min-height: auto;
	}
	
	.hero.hero-slider-layout .hero-pagination{
		bottom: 30px;
	}

	.hero-content-box{
		gap: 40px;
	}

	.hero-customer-box,
	.hero-content{
		width: calc(50% - 20px);
	}

	.hero-content::before{
		right: -20px;
	}

	.hero-content .section-title p{
		font-size: 18px;
		margin-top: 10px;
		max-width: 75%;
	}

	.hero-customer-content{
		margin-bottom: 15px;
	}

	.satisfy-customer-image figure{
		width: 45px;
		height: 45px;
	}

	.satisfy-customer-content h3{
		font-size: 18px;
	}

	.hero-btn{
		margin-top: 20px;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-us-images{
		max-width: 75%;
		margin: 0 auto 30px;
	}

	.about-image-1{
		max-width: 353px;
	}

	.about-image-2{
		max-width: 345px;
	}

	.about-us-circle{
		margin-top: 65px;
	}

	.about-us-circle a img{
		max-width: 100px;
	}

	.years-experience-box h2{
		font-size: 34px;
	}

	.about-us-btn{
		margin-top: 30px;
	}

	.our-services{
		padding: 50px 0;
	}

	.service-image img{
		aspect-ratio: 1 / 1.35;
	}

	.service-body{
		left: 20px;
		bottom: 20px;
		right: 20px;
	}

	.section-footer-text{
		margin-top: 10px;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-content{
		margin-bottom: 30px;
	}

	.why-choose-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.why-choose-images{
		margin: 0;
	}

	.what-we-do{
		padding: 50px 0;
	}

	.what-we-do-image{
		max-width: 70%;
		margin: 0 auto;
		padding: 0 60px 0 70px;
		margin-bottom: 30px;
	}

	.get-started-circle img{
		max-width: 120px;
	}

	.our-facts{
		padding: 50px 0;
	}

	.facts-image{
		height: auto;
		margin-bottom: 30px;
	}

	.facts-image figure img{
		height: auto;
		aspect-ratio: 1 / 0.8;
	}

	.facts-cta-box{
		bottom: 30px;
    	left: 30px;
    	right: 30px;
		padding: 20px;
	}

	.facts-cta-content h3{
		font-size: 24px;
	}

	.our-milestones{
		padding: 50px 0;
	}

	.our-milestones-image{
		max-width: 50%;
		margin: 0 auto;
		margin-bottom: -50px;
	}

	.milestones-counter-box{
		padding: 30px 0;
		margin: 30px 0;
	}

	.milestone-counter-item h2{
		font-size: 34px;
	}

	.our-milestones-content{
		margin-bottom: 30px;
	}

	.our-milestones-list ul li{
		font-size: 18px;
		background-size: 18px auto;
		padding-left: 25px;
	}

	.our-milestones-btn{
		margin-top: 30px;
	}

	.our-pricing{
		padding: 50px 0;
	}

	.pricing-box{
		padding: 30px;
	}

	.pricing-box .pricing-header{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.pricing-content h2{
		font-size: 32px;
		margin-bottom: 20px;
	}

	.pricing-content h2 span{
		padding: 7px 20px;
	}

	.pricing-content{
		margin-bottom: 20px;
	}

	.pricing-btn{
		margin-bottom: 30px;
	}

	.pricing-btn .btn-default{
		padding: 14px;
	}

	.pricing-list ul li{
		padding-left: 25px;
		background-size: 18px auto;
		margin-bottom: 10px;
	}

	.pricing-benefit-list{
        margin-top: 5px;
    }

	.pricing-benefit-list ul{
        gap: 15px 30px;
    }

	.our-benefits{
		padding: 50px 0;
	}

	.benefits-content{
		position: initial;
		margin: 0 0 30px 0;
	}

	.benefits-list{
		margin-top: 30px;
	}

	.benefits-list ul li{
		background-size: 18px auto;
		padding-left: 25px;
		margin-bottom: 15px;
	}

	.benefits-item{
		padding: 20px;
	}

	.benefits-item .icon-box{
		margin-bottom: 30px;
	}

	.benefits-item .icon-box img{
		max-width: 50px;
	}

	.benefits-item-content h3{
		margin-bottom: 10px;
	}

	.benefits-box .section-footer-text{
		margin-top: 30px;
	}

	.our-testimonials{
		padding: 50px 0;
	}

	.testimonials-image-box{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.testimonials-image-box figure img{
		aspect-ratio: 1 / 0.7;
	}

	.testimonials-rating-box{
		padding: 15px;
	}

	.testimonial-content{
		margin-bottom: 30px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.faqs-images{
		margin: 0 0 30px 0;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding-right: 25px;
	}

	.faq-accordion .accordion-button:not(.collapsed){
		margin-bottom: 10px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		background-size: 8px auto;
		width: 22px;
		height: 22px;
	}

	.our-gallery{
		padding: 50px 0;
	}
	
	.gallery-button-prev{
		left: 215px;
	}

	.gallery-button-next{
		right: 215px;
	}

	.our-gallery .section-footer-text{
		margin-top: 30px;
	}

	.our-process{
		padding: 50px 0;
	}

	.our-process-content{
		margin-bottom: 30px;
	}

	.process-counter{
		margin-bottom: 40px;
	}

	.process-counter-item h2{
		font-size: 32px;
	}

	.our-process-steps{
		margin-left: 0px;
		gap: 30px 0;
	}

	.process-step-item:nth-of-type(odd){
		margin-left: 80px;
	}

	.process-step-item:nth-of-type(even){
		margin-right: 80px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.post-item-content{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.main-footer{
		padding: 50px 0 0;
	}

	.footer-about{
		margin-bottom: 40px;
	}

	.footer-logo{
		margin-bottom: 20px;
	}

	.footer-contact-item{
		margin-top: 30px;
	}

	.footer-newsletter-info{
		margin-bottom: 20px;
	}

	.footer-newsletter-info p{
		margin-top: 10px;
	}

	.footer-newsletter-form .form-group .form-control{
		width: 75%;
	}

	.footer-newsletter-form .form-group .btn-default{
		width: 25%;
	}

	.footer-social-links{
		margin-top: 30px;
	}

	.footer-copyright{
		padding: 30px 0;
		margin-top: 30px;
	}

	.footer-privacy-policy ul li{
		margin-right: 15px;
		padding-right: 15px;
	}

	.page-header{
		padding: 140px 0 60px;
	}

	.page-header-box h1{
		font-size: 38px;
	}

	.our-approach{
        padding: 50px 0;
    }

    .approach-item-list{
        margin: 0 0 30px;
    }

    .approach-item{
        padding: 30px;
        margin-bottom: 20px;
    }

    .approach-item .icon-box{
        margin-bottom: 20px;
    }

    .approach-image-box,
    .approach-image-box figure,
    .approach-image-box img{
        height: auto;
    }

    .approach-image-box img{
        aspect-ratio: 1 / 0.55;
    }

    .approach-image-content{
        padding: 20px;
    }

	.our-team{
		padding: 50px 0 20px;
	}

	.team-image img{
		aspect-ratio: 1 / 0.99;
	}

	.confident-riders{
		padding: 50px 0 20px;
	}

	.confident-riders-item{
		padding: 0px;
	}

	.confident-riders-item .icon-box{
		margin-bottom: 30px;
	}

	.confident-riders-item .icon-box img{
		max-width: 70px;
	}

	.confident-riders-content h3{
		margin-bottom: 20px;
	}

	.page-services{
		padding: 50px 0 20px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.page-single-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.page-category-list{
		margin-bottom: 30px;
	}

	.page-category-list h3{
		padding: 15px 20px;
	}
	
	.page-category-list ul{
		padding: 20px;
	}

	.page-category-list ul li a{
		padding: 14px 40px 14px 15px;
	}

	.page-category-list ul li a::before{
		right: 15px;
	}
	
	.sidebar-cta-header,
	.sidebar-contact-list{
		padding: 20px;
	}

	.sidebar-contact-item{
		width: calc(50% - 15px);
	}

	.page-single-image{
		margin-bottom: 30px;
	}

	.service-entry{
		margin-bottom: 40px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry h3{
		margin-bottom: 10px;
	}

	.service-entry ul li{
		font-size: 14px;
		background-size: 18px auto;
        padding-left: 25px;
		margin-bottom: 10px;
	}

	.service-bonds-box,
	.service-experience-box,
	.service-facility-box{
		margin-top: 40px;
	}

	.service-bonds-item-list{
		margin-top: 30px;
	}

	.service-bond-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.service-bonds-counters{
		margin-top: 30px;
		gap: 20px;
	}

	.bonds-counter-item{
		width: calc(50% - 10px);
		padding: 20px;
	}

	.service-experience-body{
		margin-top: 30px;
	}

	.service-experience-item{
		padding: 20px;
	}

	.service-facility-body{
		gap: 30px;
		margin-top: 30px;
	}

	.service-facility-item .icon-box{
		margin-bottom: 20px;
	}

	.service-facility-item .icon-box img{
		max-width: 40px;
	}

	.page-blog{
		padding: 50px 0;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
        padding: 50px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }
    
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6{
        margin: 0 0 0.42em;
    }
    
    .post-entry h2{
        font-size: 36px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }
    
    .post-entry ol li,
    .post-entry ul li{
		font-size: 16px;
        margin-bottom: 10px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 10px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.team-single-image{
		margin-bottom: 30px;
	}

	.team-single-image img{
        aspect-ratio: 1 / 0.9;
    }

	.team-member-about,
	.team-member-experience,
	.team-member-skills{
		margin-bottom: 40px;
	}

	.team-contact-item{
		padding: 20px;
	}

	.team-contact-item .icon-box{
		width: 45px;
		height: 45px;
		margin-right: 10px;
	}

	.team-contact-content{
		width: calc(100% - 55px);
	}

	.member-social-list{
		margin-top: 30px;
	}

	.member-experience-item{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.member-skill-list{
		gap: 30px;
	}

	.skills-progress-bar .skill-data{
		margin-bottom: 15px;
	}

	.page-pricing{
		padding: 50px 0;
	}
	
	.page-testimonials{
		padding: 50px 0 20px;
	}

	.page-testimonials .testimonial-item{
		padding: 20px;
	}

	.testimonial-item .testimonial-quotes{
		margin-bottom: 20px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.page-faqs .page-single-faqs{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0;
	}

	.contact-form{
		padding: 30px;
	}

	.contact-form form .form-control{
		padding: 12px 15px;
	}

	.google-map-iframe{
		margin: 30px 0 0 0;
		height: 450px;
	}

	.contact-info-list{
		margin-top: 50px;
	}

	.contact-info-item{
		width: calc(50% - 15px);
		padding: 20px;
	}

	.contact-info-item .icon-box{
		margin-bottom: 30px;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px){
	.sm-pe-0{
		padding-right: calc(var(--bs-gutter-x) * .5) !important;
	}
	.sm-ps-0{
		padding-left: calc(var(--bs-gutter-x) * .5) !important;
	}
	.section-title h1 {
		line-height: 35px;
	}

	.section-row{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 30px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.hero{
        padding: 0;
    }

	.hero.hero-slider-layout .hero-slide{
		padding: 0;
	}

	.hero.hero-slider-layout .hero-pagination{
		text-align: left;
		padding-left: 15px;
	}

	.hero-content-box{
        gap: 20px;
    }

	.hero-customer-box,
	.hero-content{
        width: 100%;
    }

	.hero-content{
		text-align: left;
	}

	.hero-content .section-title p{
        font-size: 16px;
        max-width: 100%;
    }

	.about-us-images{
		max-width: 100%;
	}

	.about-image-box{
		gap: 20px;
	}

	.about-image-1{
        max-width: 203px;
    }

	.about-image-2{
        max-width: 225px;
		margin: -125px 0 0 auto;
    }

	.about-us-circle{
        margin-top: 25px;
    }

	.about-us-body{
		gap: 20px;
	}

	.about-us-list{
		width: 100%;
	}

	.years-experience-box{
		width: 100%;
		padding: 20px;
	}

	.years-experience-box h2{
        font-size: 28px;
    }

	.about-us-list ul li{
		margin-bottom: 10px;
	}

	.about-item-box{
		gap: 20px;
	}

	.about-us-item{
		width: 100%;
	}

	.about-us-item-content h3{
		font-size: 18px;
	}

	.service-content h3{
		font-size: 18px;
	}

	.why-choose-item-content h3{
		font-size: 18px;
	}

	.why-choose-image-box-1,
	.why-choose-image-box-2{
		width: 100%;
	}

	.why-choose-image-box-1 .why-choose-image figure img,
	.why-choose-image-box-2 .why-choose-image figure img{
		aspect-ratio: 1 / 0.9;
	}

	.why-choose-image-box-2 .contact-us-circle{
		display: none;
	}

	.why-choose-image-box-2 .why-choose-image{
		margin: 0;
	}

	.google-rating-box .google-rating-content{
		margin-bottom: 10px;
	}

	.google-rating-box .satisfy-customer-image figure,
	.google-rating-box .satisfy-customer-image.add-more{
		height: 45px;
		width: 45px;
	}

	.what-we-do-image{
        max-width: 100%;
        padding: 0 40px 0 45px;
    }

	.get-started-circle{
		top: 45px;
	}

	.get-started-circle img{
        max-width: 80px;
    }

	.company-experience{
        width: 140px;
		bottom: 45px;
    }

	.company-experience .icon-box{
		margin-bottom: 5px;
	}

	.company-experience .icon-box img{
        max-width: 30px;
    }

	.company-experience-content h3{
        font-size: 28px;
		margin-bottom: 0;
    }

	.company-experience-content p{
        font-size: 12px;
    }

	.what-we-body{
		border-radius: 20px;
	}

	.what-we-body-item{
		width: 100%;
	}

	.what-we-body-header{
		margin-bottom: 10px;
	}

	.what-we-body-title h3{
        font-size: 18px;
    }

	.what-we-list ul li{
		width: 100%;
	}

	.facts-image figure img{
		aspect-ratio: 1 / 0.912;
	}

	.facts-cta-box{
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 15px;
    }

	.facts-cta-box .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 10px
	}

	.facts-cta-box .icon-box img{
		max-width: 24px;
	}

	.facts-cta-content{
		width: calc(100% - 60px);
	}

	.facts-cta-content h3{
        font-size: 22px;
    }

	.facts-content{
		padding: 50px 15px;
	}

	.facts-item{
		width: 100%;
	}

	.facts-item .icon-box{
		margin-bottom: 15px;
	}

	.facts-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.milestone-counter-item h2{
		font-size: 28px;
	}

	.our-milestones-list ul{
		gap: 15px;
	}

	.our-milestones-list ul li{
		width: 100%;
		font-size: 16px;
		background-size: 16px auto;
	}

	.our-milestones-image{
		max-width: 100%;
	}

	.our-milestones-image img{
		aspect-ratio: 1 / 1.29;
		object-fit: contain;
	}

	.pricing-box{
        padding: 20px;
    }

	.pricing-box .pricing-header h3{
		font-size: 18px;
	}

	.pricing-content h2{
		font-size: 26px;
		gap: 10px 20px;
	}
	
	.pricing-benefit-list ul{
		gap: 10px;
	}

	.pricing-benefit-list ul li{
		font-size: 14px;
	}

	.pricing-benefit-list ul li img{
		max-width: 16px;
		margin-right: 5px;
	}

	.benefits-list ul li{
		margin-bottom: 10px;
	}
	
	.benefits-item{
		width: 100%;
	}

	.benefits-item .icon-box{
        margin-bottom: 20px;
    }

	.testimonials-image-box figure img{
        aspect-ratio: 1 / 0.9;
    }

	.testimonials-rating-box{
		bottom: 15px;
		left: 15px;
		right: 15px;
        padding: 10px;
    }

	.testimonials-rating{
		margin-right: 5px;
	}

	.testimonials-rating-box i{
		font-size: 14px;
		margin-right: 0px;
	}

	.testimonials-rating-content p{
		font-size: 14px;
	}

	.testimonials-rating-content p span{
		font-size: 16px;
	}
	
	.testimonial-content p{
		font-size: 14px;
	}

	.testimonial-author .author-image{
		margin-right: 10px;
	}

	.testimonial-author .author-image img{
		max-width: 50px;
	}
	
	.testimonial-author .author-content{
		width: calc(100% - 60px);
	}

	.testimonial-author .author-content h3{
		font-size: 18px;
	}

	.faqs-image-box-2,
	.faqs-image-box-1,
	.faqs-images{
		gap: 20px;
	}

	.faqs-image-box-1{
		width: calc(47% - 10px);
	}

	.faqs-image-box-2{
		width: calc(53% - 10px);
	}

	.about-contact-box .icon-box{
		width: 45px;
		height: 45px;
	}

	.about-contact-box .icon-box img{
		max-width: 24px;
	}

	.about-contact-box-content h3{
		font-size: 16px;
	}

	.faq-accordion .accordion-header .accordion-button{
        font-size: 18px;
    }

	.faq-accordion .accordion-item .accordion-body{
		padding-right: 0px;
	}

	.gallery-btn{
		display: flex;
		justify-content: center;
		gap: 15px;
		margin-top: 20px;
	}

	.gallery-slider .gallery-button-next,
	.gallery-slider .gallery-button-prev{
        position: initial;
		transform: translateY(0%);
		border: none;
		height: 40px;
		width: 40px;
    }

	.gallery-slider .gallery-button-next::before,
	.gallery-slider .gallery-button-prev::before{
		background-size: 10px auto;
	}

	.process-counter{
		gap: 20px;
		margin-bottom: 30px;
	}

	.process-counter-item{
		width: calc(33.33% - 13.33px);
	}

	.process-counter-item::before{
		right: -10px;
	}

	.process-counter-item h2{
		font-size: 26px;
	}

	.process-counter-item p{
		font-size: 12px;
	}

	.process-step-item:nth-of-type(odd){
		margin-left: 20px;
	}

	.process-step-item:nth-of-type(even){
		margin-right: 20px;
	}

	.process-step-item{
		padding: 15px;
	}

	.step-item-number{
		height: 46px;
		width: 46px;
		margin-right: 14px;
	}

	.step-item-number h2{
		font-size: 18px;
	}

	.step-item-content{
		width: calc(100% - 60px);
	}

	.step-item-content h3{
		font-size: 18px;
	}

	.post-featured-image{
		margin-bottom: 15px;
	}

	.post-item-content h2{
		font-size: 18px;
	}

	.footer-about{
        margin-bottom: 30px;
    }

	.footer-logo{
        margin-bottom: 15px;
    }

	.footer-menu ul{
		gap: 15px;
	}

	.footer-menu ul li{
		font-size: 14px;
	}

	.footer-contact-item h3,
	.footer-newsletter-info h3,
	.footer-social-links h3{
		font-size: 18px;
	}

	.footer-newsletter-form .form-group .form-control{
        width: 85%;
    }

	.footer-newsletter-form .form-group .btn-default{
        width: 15%;
        font-size: 0;
        padding: 10px;
    }

	.footer-newsletter-form .form-group .btn-default::before{
        width: 14px;
        height: 14px;
    }

	.footer-social-links{
		gap: 15px;
	}

	.footer-copyright{
		justify-content: center;
        padding: 15px 0;
        margin-top: 30px;
    }

	.footer-privacy-policy ul li{
		font-size: 14px;
	}

	.page-header-box h1{
		font-size: 30px;
	}

	.approach-item{
        padding: 20px;
    }

    .approach-item .icon-box{
        padding: 0 8px 8px 0;
    }
    
    .approach-item .icon-box::before{
        width: 35px;
        height: 35px;
    }

    .approach-item .icon-box img{
        max-width: 40px;
    }

    .approach-item-content h3,
    .approach-image-content h3{
        font-size: 18px;
    }

    .approach-image-box img{
        aspect-ratio: 1 / 0.88;
    }

    .approach-image-content{
        padding: 15px;
        right: 15px;
        bottom: 15px;
        left: 15px;
    }

    .approach-image-content p{
        font-size: 14px;
    }

	.team-content{
		padding: 15px;
	}

	.confident-riders-item .icon-box{
        margin-bottom: 20px;
    }

	.confident-riders-item .icon-box img{
		max-width: 60px;
	}

	.confident-riders-content h3{
		font-size: 18px;
        margin-bottom: 15px;
    }

	.page-category-list h3{
		font-size: 18px;
	}

	.sidebar-cta-content p{
		font-size: 14px;
	}

	.sidebar-contact-list{
		gap: 20px;
	}

	.sidebar-contact-item{
		width: 100%;
	}

	.page-single-image{
        margin-bottom: 20px;
    }

	.page-single-image img{
		aspect-ratio: 1 / 0.67;
	}

	.service-entry h2{
		font-size: 26px;
	}

	.service-entry h3{
		font-size: 18px;
	}

	.service-entry ul{
		margin-top: 20px;
	}

	.bonds-counter-item{
		width: 100%;
	}

	.bonds-counter-header .icon-box{
		width: 40px;
		height: 40px;
	}

	.bonds-counter-header .icon-box img{
		max-width: 24px;
	}

	.service-experience-body{
		gap: 20px;
	}

	.service-experience-content,
	.service-experience-image{
		width: 100%;
	}

	.service-experience-item{
		gap: 15px;
	}

	.service-experience-item .icon-box{
		width: 40px;
		height: 40px;
	}

	.service-experience-item .icon-box img{
		max-width: 24px;
	}

	.experience-item-content{
		width: calc(100% - 55px);
	}

	.service-experience-image figure,
	.service-experience-image img{
		height: auto;
	}

	.service-facility-item{
		width: 100%;
	}

	.post-single-meta ol li,
	.post-single-meta ol li i{
		font-size: 16px;
	}

	.post-image img{
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote{
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry blockquote p{
		font-size: 16px;
	}

	.post-entry h2{
		font-size: 26px;
	}

	.tag-links{
		font-size: 18px;
	}

	.team-single-image img{
		aspect-ratio: 1 / 1.201;
	}

	.team-contact-item{
        padding: 15px;
        width: 100%;
    }

    .team-contact-item:nth-of-type(-2n + 2),
    .team-contact-item:nth-child(2n):nth-last-child(2){
        border-radius: 0;
    }

    .team-contact-content h3,
	.member-social-list h3{
        font-size: 18px;
    }

	.member-social-list ul li a{
    	width: 38px;
    	height: 38px;
	}

	.member-experience-item{
		width: 100%;
	}

	.member-experience-item:nth-last-child(2){
		border-bottom: 1px solid var(--divider-color);
		margin-bottom: 15px;
        padding-bottom: 15px;
	}
	
	.member-experience-item-content h3{
		font-size: 18px;
	}

	.member-experience-item-content p{
		margin: 5px 0 0;
	}

	.member-skill-list{
        gap: 20px;
    }

	.skills-progress-bar{
		width: 100%;
	}


}
/* ----------------------------------------------------------------------------------------
*   Language Submenu Hover Effect
* ---------------------------------------------------------------------------------------- */

#navbarNavLang .nav-item.submenu .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    display: block;
    transition: all 0.3s ease-in-out;
    margin-top: 0;
    border: 1px solid #e8e4dc;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    right: 5px;
}

#navbarNavLang .nav-item.submenu:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
}

#navbarNavLang .nav-item.submenu .dropdown-menu a,
#navbarNavLang .nav-item.submenu .dropdown-menu span {
    color: var(--primary-color) !important;
}

/* ----------------------------------------------------------------------------------------
*   E-COMMERCE PRODUCTS PAGE STYLES
* ---------------------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------------------
*   Products Section
* ---------------------------------------------------------------------------------------- */
.products-section {
    background: #fff;
    min-height: 100vh;
}

/* ----------------------------------------------------------------------------------------
*   Filters Sidebar
* ---------------------------------------------------------------------------------------- */
.filters-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.filters-header h4 {
    font-family: var(--accent-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* ----------------------------------------------------------------------------------------
*   Filter Groups - Pure CSS Accordion
* ---------------------------------------------------------------------------------------- */
.filter-group {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 1rem;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.filter-group-header:hover {
    color: var(--accent-color);
}

/* Filter Icon (Arrow) */
.filter-icon {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--primary-color);
    transition: transform 0.3s ease, border-top-color 0.3s ease;
    margin-left: 8px;
}

.filter-toggle:checked + .filter-group-header .filter-icon {
    transform: rotate(-180deg);
    border-top-color: var(--accent-color);
}

.filter-toggle:checked + .filter-group-header {
    color: var(--accent-color);
}

/* Filter Content - Hidden by default, shown when checkbox is checked */
.filter-group-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.filter-toggle:checked ~ .filter-group-content {
    max-height: 1000px;
    padding: 12px 0;
}

/* Filter Items */
.filter-item {
    margin-bottom: 8px;
}

.filter-item .form-check {
    padding-left: 0;
}

.filter-item .form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-item .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.filter-item .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(250, 182, 49, 0.25);
    border-color: var(--accent-color);
}

.filter-item .form-check-label {
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    margin-left: 8px;
    transition: color 0.2s ease;
}

.filter-item .form-check-label:hover {
    color: var(--primary-color);
}

/* Subcategories/Subfilters */
.filter-subcategories {
    border-left: 2px solid #f0f0f0;
    padding-left: 12px;
}

/* Price Inputs */
.price-inputs .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    padding: 8px 12px;
}

.price-inputs .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(250, 182, 49, 0.15);
}

.price-inputs .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.price-inputs .btn-primary:hover {
    background-color: #e09d1e;
    border-color: #e09d1e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(250, 182, 49, 0.3);
}

/* ----------------------------------------------------------------------------------------
*   Active Filters Bar
* ---------------------------------------------------------------------------------------- */
.active-filters-bar {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 16px 20px;
    border: 1px solid #e8e8e8;
}

.active-filters-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    white-space: nowrap;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.active-filter-tag:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-1px);
}

.active-filter-tag i {
    font-size: 0.9rem;
}

/* ----------------------------------------------------------------------------------------
*   Products Header
* ---------------------------------------------------------------------------------------- */
.products-header h5 {
    font-family: var(--accent-font);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.products-sort .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    padding: 6px 32px 6px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.products-sort .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(250, 182, 49, 0.15);
}

/* ----------------------------------------------------------------------------------------
*   Product Card
* ---------------------------------------------------------------------------------------- */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Product Image */
.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: #f8f8f8;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
}

.badge-sale {
    background: #e74c3c;
    color: #fff;
}

.badge-new {
    background: var(--accent-color);
    color: var(--primary-color);
    top: 48px; /* Stack below sale badge if both exist */
}

/* Product Info */
.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-brand {
    font-size: 0.8rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.product-card-link:hover .product-title {
    color: var(--accent-color);
}

/* Product Price */
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.price-current {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--accent-font);
}

.price-old {
    font-size: 1rem;
    color: var(--text-color);
    text-decoration: line-through;
    opacity: 0.7;
}

/* Product Actions */
.product-actions {
    padding: 0 20px 20px;
}

.product-actions .btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.product-actions .btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(250, 182, 49, 0.3);
}

/* ----------------------------------------------------------------------------------------
*   No Results
* ---------------------------------------------------------------------------------------- */
.no-results {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 60px 30px;
    border: 2px dashed #e0e0e0;
}

.no-results h4 {
    font-family: var(--accent-font);
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.no-results .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.no-results .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* ----------------------------------------------------------------------------------------
*   Pagination
* ---------------------------------------------------------------------------------------- */
.products-pagination .pagination {
    gap: 6px;
}

.products-pagination .page-link {
    border: 1px solid #e0e0e0;
    color: var(--primary-color);
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.products-pagination .page-link:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.products-pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* ----------------------------------------------------------------------------------------
*   Responsive Design
* ---------------------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .filters-sidebar {
        margin-bottom: 30px;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 16px;
    }
    
    .products-sort {
        width: 100%;
    }
    
    .products-sort form {
        width: 100%;
    }
    
    .products-sort .form-select {
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    .active-filters-bar {
        padding: 12px 16px;
    }
    
    .active-filters-label {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .products-header h5 {
        font-size: 1.5rem;
    }
}

/* ----------------------------------------------------------------------------------------
*   Utility Classes
* ---------------------------------------------------------------------------------------- */
.btn-outline-secondary {
    border-color: #d0d0d0;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-link.text-danger:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* ================================================================
   HORSE LISTING — PREMIUM REDESIGN (hpl = horse premium listing)
   ================================================================ */

:root {
    --hpl-bg-dark:       #1C1C1C;
    --hpl-bg-secondary:  #F5F5F5;
    --hpl-text-muted:    #6B7280;
    --hpl-border:        rgba(0,0,0,0.12);
    --hpl-gold:          #FFD700;
    --hpl-gold-dark:     #FFA500;
    --hpl-silver:        #E8E8E8;
    --hpl-silver-dark:   #B0B0B0;
    --hpl-bronze:        #CD7F32;
    --hpl-bronze-dark:   #8B4513;
    --hpl-temp-calm:     #5DCAA5;
    --hpl-temp-balanced: #FAC775;
    --hpl-temp-energetic:#F0997B;
    --hpl-teal-dark:     #085041;
    --hpl-teal-medium:   #0F6E56;
}

/* ── Sidebar wrapper — limpo, sem card ── */
.hpl-sidebar-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: #e0e0e0 transparent;
}
.hpl-sidebar-wrapper::-webkit-scrollbar { width: 4px; }
.hpl-sidebar-wrapper::-webkit-scrollbar-track { background: transparent; }
.hpl-sidebar-wrapper::-webkit-scrollbar-thumb { background: #e0e0e0; border-radius: 4px; }

/* Sidebar header */
.hpl-sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.hpl-sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--hpl-bg-dark);
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.hpl-sidebar-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--hpl-bg-dark), transparent);
    opacity: 0.15;
}

/* ── Filter common ── */
.hpl-filter-group {
    margin-bottom: 10px;
    background: #fafafa;
    border: none;
    border-radius: 0;
    padding: 14px 16px;
}
.hpl-filter-label {
    font-size: 15px;
    color: #292a2c;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: .5rem !important;
    display: block;
}

/* ── Accordion ── */
.hpl-accordion .hpl-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 0 0 10px 0;
    cursor: pointer;
    text-align: left;
}
.hpl-accordion .hpl-accordion-chevron {
    color: var(--hpl-text-muted);
    flex-shrink: 0;
    transition: transform 0.25s ease;
    transform: rotate(0deg);
}
.hpl-accordion.hpl-accordion--open > .hpl-accordion-toggle .hpl-accordion-chevron {
    transform: rotate(180deg);
}
.hpl-accordion > .hpl-accordion-body {
    display: none;
    padding-bottom: 0;
}
.hpl-accordion.hpl-accordion--open > .hpl-accordion-body {
    display: block;
}

/* ── Active filters box ── */
.hpl-active-box {
    background: transparent;
    border-radius: 3px;
    padding: 0;
    margin-bottom: 22px;
}
.hpl-clear-link {
    font-size: 10px;
    color: #3B82F6;
    text-decoration: none;
    transition: opacity 0.2s;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.hpl-clear-link:hover { text-decoration: underline; }
.hpl-active-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #b2b0b0;
    color: white;
    padding: 4px 9px;
    border-radius: 3px;
    font-size: 10px;
    border: none;
    cursor: pointer;
}
.hpl-color-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.hpl-active-tag-remove {
    cursor: pointer;
    opacity: 0.7;
    font-size: 12px;
    line-height: 1;
    margin-left: 2px;
}
.hpl-active-tag-remove:hover { opacity: 1; }

/* ── Dual range slider ── */
.hpl-range-values {
    font-size: 11px;
    color: var(--hpl-text-muted);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}
.hpl-range-wrap {
    position: relative;
    height: 22px;
    margin-bottom: 4px;
}
.hpl-range-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(0,0,0,0.12);
    border-radius: 2px;
}
.hpl-range-fill {
    position: absolute;
    height: 4px;
    background: var(--hpl-accent, #c9a96e);
    border-radius: 2px;
}
.hpl-range-wrap input[type=range] {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    height: 4px;
    margin: 0;
    padding: 0;
}
.hpl-range-wrap input[type=range]::-webkit-slider-thumb {
    pointer-events: all;
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--hpl-accent, #c9a96e);
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
    cursor: pointer;
}
.hpl-range-wrap input[type=range]::-moz-range-thumb {
    pointer-events: all;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--hpl-accent, #c9a96e);
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
    cursor: pointer;
}

/* ── Coat pills ── */
.hpl-coat-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 10px;
    border: 1px solid var(--hpl-border);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--hpl-bg-dark);
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    min-width: 52px;
}
.hpl-coat-pill:hover { border-color: rgba(0,0,0,0.35); color: var(--hpl-bg-dark); }
.hpl-coat-pill.active { background: #b2b0b0; color: white; border-color: #b2b0b0; }
.hpl-coat-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    flex-shrink: 0;
}
.hpl-coat-malhado { background: linear-gradient(135deg, #8B7355 50%, #1C1C1C 50%); }

/* ── Specialty items ── */
.hpl-specialty-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 3px;
    font-size: 13px;
    border: 0.5px solid var(--hpl-border);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--hpl-bg-dark);
    font-family: inherit;
    width: 100%;
    text-align: left;
}
.hpl-specialty-item:hover { border-color: rgba(0,0,0,0.3); }
.hpl-specialty-item.active { background: #b2b0b0; color: white; border-color: #b2b0b0; }
.hpl-specialty-count {
    margin-left: auto;
    font-size: 9px;
    color: var(--hpl-text-muted);
    flex-shrink: 0;
}
.hpl-specialty-item.active .hpl-specialty-count {
    background: rgba(255,255,255,0.2);
    padding: 2px 6px;
    border-radius: 3px;
    color: white;
}

/* ── Body type ── */
.hpl-body-type-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 4px;
    border-radius: 3px;
    border: 0.5px solid var(--hpl-border);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--hpl-bg-dark);
    font-family: inherit;
}
.hpl-body-type-item span { font-size: 9px; margin-top: 3px; color: var(--hpl-text-muted); }
.hpl-body-type-item:hover { border-color: rgba(0,0,0,0.3); }
.hpl-body-type-item.active { background: #b2b0b0; color: white; border-color: #b2b0b0; }
.hpl-body-type-item.active span { font-weight: 600; color: rgba(255,255,255,0.85); }

/* ── Lineage ── */
.hpl-lineage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 6px;
    border-radius: 3px;
    border: 0.5px solid var(--hpl-border);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 11px;
    color: var(--hpl-bg-dark);
    font-family: inherit;
    width: 100px;
    text-align: center;
}
.hpl-lineage-item:hover { border-color: rgba(0,0,0,0.3); }
.hpl-lineage-item.active { background: #b2b0b0; color: white; border-color: #b2b0b0; }
.hpl-lineage-item.active .hpl-lineage-name { font-weight: 600; }
.hpl-lineage-item.active .hpl-lineage-count { color: rgba(255,255,255,0.5); }
.hpl-lineage-medal {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.hpl-lineage-elite    { background: linear-gradient(135deg, var(--hpl-gold), var(--hpl-gold-dark)); color: var(--hpl-bg-dark); }
.hpl-lineage-premium  { background: linear-gradient(135deg, var(--hpl-silver), var(--hpl-silver-dark)); color: var(--hpl-bg-dark); }
.hpl-lineage-registered { background: linear-gradient(135deg, var(--hpl-bronze), var(--hpl-bronze-dark)); color: white; }
.hpl-lineage-count { font-size: 9px; color: var(--hpl-text-muted); }

/* ── Price slider ── */
.hpl-price-box {
    background: transparent;
    border-radius: 3px;
    padding: 0;
}
.hpl-price-range-label { font-size: 10px; color: var(--hpl-text-muted); }
.hpl-price-track {
    height: 5px;
    background: #E5E5E5;
    border-radius: 3px;
    position: relative;
    margin-bottom: 10px;
}
.hpl-price-range-fill {
    position: absolute;
    left: 10%;
    right: 35%;
    height: 100%;
    background: #b2b0b0;
    border-radius: 3px;
}
.hpl-price-handle {
    position: absolute;
    width: 14px;
    height: 14px;
    background: white;
    border: 2px solid #1C1C1C;
    border-radius: 50%;
    top: -5px;
    cursor: pointer;
    transition: transform 0.2s;
}
.hpl-price-handle:hover { transform: scale(1.2) translateX(-50%); }
.hpl-price-handle-left  { left: 10%; transform: translateX(-50%); }
.hpl-price-handle-right { right: 35%; transform: translateX(50%); }
.hpl-price-value {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    color: #1C1C1C;
}

/* ── Temperament ── */
.hpl-temp-box {
    background: transparent;
    border-radius: 3px;
    padding: 0;
}
.hpl-temp-label { font-size: 9px; color: var(--hpl-text-muted); }
.hpl-temp-bar { display: flex; gap: 3px; }
.hpl-temp-seg {
    flex: 1;
    height: 24px;
    background: #E5E5E5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.hpl-temp-seg:first-child { border-radius: 4px 0 0 4px; }
.hpl-temp-seg:last-child  { border-radius: 0 4px 4px 0; }
.hpl-temp-seg.t1.active { background: #b2b0b0; }
.hpl-temp-seg.t2.active { background: #b2b0b0; }
.hpl-temp-dot {
    width: 8px; height: 8px;
    background: white;
    border-radius: 50%;
    display: none;
}
.hpl-temp-seg.active .hpl-temp-dot { display: block; }

/* ══════════════════════════════════════════════════════════════
   HORSE GRID & CARDS
   ══════════════════════════════════════════════════════════════ */

.horse-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.horse-grid .horse-card-featured {
    grid-column: 1 / -1;
}

/* ── Featured card ── */
.horse-card-featured {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}
.horse-card-featured .hpl-feat-img {
    position: relative;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    background: #1a1a1a;
}
.horse-card-featured .hpl-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.horse-card-featured:hover .hpl-feat-img img { transform: scale(1.04); }
.hpl-feat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.hpl-feat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--hpl-gold), var(--hpl-gold-dark));
    color: var(--hpl-bg-dark);
    font-size: 9px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    z-index: 2;
}
.hpl-feat-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 60%, transparent 100%);
    z-index: 2;
}
.hpl-feat-name {
    color: white;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}
.hpl-feat-sub {
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    margin: 6px 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 58%;
}
.hpl-feat-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.14);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    transition: background 0.3s, color 0.3s;
    white-space: nowrap;
}
.hpl-feat-cta:hover { background: rgba(255,255,255,0.26); color: white; }

/* ── Regular horse card ── */
.horse-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.horse-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}
.horse-card .hpl-card-img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #1a1a1a;
}
.horse-card .hpl-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.horse-card:hover .hpl-card-img img { transform: scale(1.06); }
.hpl-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.45) 70%, transparent 100%);
}
.hpl-card-name {
    color: white;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}
.hpl-card-sub {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    margin: 4px 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hpl-discover-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.12);
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.horse-card:hover .hpl-discover-tag {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .horse-grid { grid-template-columns: repeat(2, 1fr); }
    .horse-card-featured .hpl-feat-img { aspect-ratio: 16 / 9; }
    .hpl-feat-name { font-size: 17px; }
    .hpl-feat-sub { max-width: 100%; }
}
@media (max-width: 575px) {
    .horse-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   SHOP GRID — cards standard de loja
   ══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   LIGHT PRODUCT SECTION
   ══════════════════════════════════════════════════════════════ */
.products-section-light {
    background: #fff !important;
    padding: 40px 0 60px;
}

/* Collection header */
.hpc-collection-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 4px;
}
.hpc-collection-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

/* ── Grid header ── */
.hpc-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}
.hpc-grid-header-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hpc-grid-title {
    font-size: 22px;
    letter-spacing: -1px;
    font-weight: 800;
    color: var(--primary-color, #1a1a1a);
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}
.hpc-grid-meta {
    font-size: 11px;
    color: #999;
    letter-spacing: 0;
}
.hpc-grid-sep {
    margin: 0 5px;
    opacity: 0.5;
}

/* ── Quick filter trigger & dropdown ── */
.hpc-grid-header-right {
    position: relative;
}
.hpc-qf-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color, #1a1a1a);
    border: none;
    border-radius: 0;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s;
}
.hpc-qf-trigger:hover {
    background: var(--hpl-accent, #c9a96e);
    color: #fff;
}
.hpc-qf-trigger.active {
    background: var(--hpl-accent, #c9a96e);
    color: #fff;
}
.hpc-qf-chevron {
    transition: transform 0.25s ease;
}
.hpc-qf-trigger.open .hpc-qf-chevron {
    transform: rotate(180deg);
}
.hpc-qf-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 50;
    flex-direction: column;
    gap: 4px;
}
.hpc-qf-dropdown.open {
    display: flex;
}

/* ── Quick filter buttons ── */
.hpc-qf-btn {
    background: transparent;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    letter-spacing: 0.3px;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-align: left;
    width: 100%;
}
.hpc-qf-btn:hover {
    background: #f5f3ef;
    color: var(--hpl-accent, #c9a96e);
}
.hpc-qf-btn.active {
    background: var(--hpl-accent, #c9a96e);
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   FEATURED CARD (destaque da semana) — light
   ══════════════════════════════════════════════════════════════ */
.hpc-featured {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f8f7f4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
    border: 1px solid #eee;
    transition: box-shadow 0.35s ease;
}
.hpc-featured:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.hpc-featured a { text-decoration: none; color: inherit; display: contents; }
.hpc-featured-img {
    position: relative;
    overflow: hidden;
}
.hpc-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.hpc-featured:hover .hpc-featured-img img { transform: scale(1.04); }
.hpc-featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-color, #c9a96e);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}
.hpc-featured-body {
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hpc-featured-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 6px;
    line-height: 1.2;
}
.hpc-featured-sub {
    font-size: 12px;
    color: #999;
    margin: 0 0 6px;
}
.hpc-featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}
.hpc-featured-tags span {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 4px;
    background: rgba(0,0,0,0.06);
    color: #666;
    font-weight: 500;
}
.hpc-featured-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    position: absolute;
    top: 20px;
    right: 24px;
}
.hpc-featured-price small {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    display: block;
    text-align: right;
    margin-bottom: 2px;
}
.hpc-featured-specs {
    display: flex;
    gap: 20px;
    margin-top: 12px;
}
.hpc-featured-spec {
    display: flex;
    flex-direction: column;
}
.hpc-featured-spec-label {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 3px;
}
.hpc-featured-spec-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}
.hpc-featured-spec-val.hpc-temp-text {
    color: var(--accent-color, #c9a96e);
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT GRID — 3 col, texto sobre imagem com gradiente
   ══════════════════════════════════════════════════════════════ */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}


.shop-card {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    background: #111;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.shop-card > a {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    aspect-ratio: 3 / 4.5;
}

/* Imagem fundo */
.shop-card-img {
    position: absolute;
    inset: 0;
}
.shop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.shop-card:hover .shop-card-img img { transform: scale(1.04); }

/* Gradiente sobre a imagem — forte em baixo para o texto se ler */
.shop-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.2) 65%,
        transparent 100%
    );
    pointer-events: none;
}

/* Badge — ícone estrela premium */
.shop-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-color, #c9a96e);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.shop-card-badge svg {
    display: block;
}

/* Preço — com gradiente próprio no topo direito */
.shop-card-price-wrap {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 10px 14px;
    border-radius: 0 8px 0 12px;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.35) 100%);
    backdrop-filter: blur(4px);
}
.shop-card-price {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* Corpo — posicionado em baixo sobre o gradiente */
.shop-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 2;
}

.shop-card-name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}
.shop-card-sub {
    font-style: italic;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.792);
    margin: 0;
}

/* Tags — idade · altura · disciplina · temperamento */
.sc-info-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}
.sc-tag {
    font-size: 10px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 0px;
    background: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}
.sc-tag-accent {
    background: var(--accent-color, #c9a96e);
    color: #fff;
}

@media (max-width: 991px) {
    .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .hpc-collection-title { font-size: 22px; }
}
@media (max-width: 575px) {
    .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .shop-card-name { font-size: 14px; }
    .shop-card-body { padding: 12px; }
}

/* ══════════════════════════════════════════════════════════════
   SIDEBAR COMPACT — filtros com menos espaço
   ══════════════════════════════════════════════════════════════ */

.hpl-sidebar-wrapper { padding-right: 0; }
.hpl-sidebar-title   { font-size: 15px; }
.hpl-sidebar-header  { margin-bottom: 16px; }
.hpl-filter-group    { margin-bottom: 10px; padding: 12px 14px; }
.hpl-filter-label    { font-size: 15px; letter-spacing: 0; margin-bottom: .5rem !important; }

/* ── Parent accordion (FILTROS RÁPIDOS / AVANÇADOS) ── */
.hpl-accordion--parent {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 4px;
    margin-bottom: 20px;
}
.hpl-accordion--parent + .hpl-accordion--parent {
    margin-top: 8px;
}
.hpl-accordion--parent > .hpl-accordion-toggle {
    padding: 10px 0;
}
.hpl-parent-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
}
.hpl-parent-body {
    padding-top: 12px;
}

.hpl-active-box  { padding: 0; margin-bottom: 16px; }
.hpl-active-tag  { font-size: 10px; padding: 4px 8px; border-radius: 3px; }

.hpl-coat-pill   { padding: 6px 8px; font-size: 9px; min-width: 46px; }
.hpl-coat-circle { width: 28px; height: 28px; }

.hpl-specialty-item  { padding: 10px 14px; font-size: 13px; }
.hpl-specialty-count { font-size: 10px; }

.hpl-body-type-item      { padding: 8px 4px; }
.hpl-body-type-item span { font-size: 10px; }

.hpl-lineage-item  { padding: 8px 10px; font-size: 12px; }
.hpl-lineage-medal { width: 26px; height: 26px; font-size: 12px; }
.hpl-lineage-count { font-size: 10px; }

.hpl-price-box         { padding: 0; }
.hpl-price-range-label { font-size: 11px; }
.hpl-price-value       { font-size: 13px; }

.hpl-temp-box   { padding: 0; }
.hpl-temp-label { font-size: 10px; }
.hpl-temp-seg   { height: 24px; }
.hpl-temp-dot   { width: 8px; height: 8px; }



/* ========= NEW STYLE =========*/

/* ── show.blade.php ── */

.horse-title-section {
    padding: 40px 0 36px;
    background: #fff;
    border-bottom: none;
}

.horse-title-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.horse-title-left { flex: 1; }

.horse-title-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.horse-title-tag {
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: capitalize;
    border-radius: 2px;
}

.horse-title-tag--gold {
    background: var(--accent-color, #c9a96e);
    color: #fff;
}

.horse-title-tag--light {
    background: #f0ece8;
    color: var(--primary-color);
}

.horse-title-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 0;
}

.horse-title-sub {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-style: italic;
    color: #bbb;
    font-weight: 400;
    margin-top: 4px;
}

.horse-title-ref {
    font-size: 14px;
    color: #201d1d;
    letter-spacing: 0;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
}

.horse-title-right {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    padding-top: 8px;
}

.horse-title-action {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
}

.horse-title-action--primary {
    background: var(--primary-color);
    color: #fff;
}

.horse-title-action--primary:hover {
    background: #000;
    color: #fff;
}

.horse-title-action--outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid #e0e0e0;
}

.horse-title-action--outline:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

/* Key specs row — folha de características tipografada.
   Três decisões, todas pela negativa: sem ícone, sem numeral, sem cor. Os ícones
   (`bi-stars`, `bi-palette`, `bi-trophy`) eram genéricos de biblioteca; o numeral
   01–06 que os substituiu não era melhor — numerar "Raça, Nascimento, Sexo" não
   informa nada, a ordem é arbitrária, e uma marca que não informa é decoração.
   O dourado também sai: já manda na borda do hero, no nome do cavalo e nos CTA;
   aqui só diluía. Fica a tipografia a fazer o trabalho todo. */
.key-specs {
    display: flex;
    gap: 0;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.key-spec {
    position: relative;
    flex: 1;
    display: block;
    padding: 26px 22px;
    min-width: 0;
}

.key-spec-icon { display: none; }

/* Filete recuado em vez de border-right: a régua não toca no topo nem na base.
   É a diferença entre uma grelha de caixas e uma folha tipografada — separa as
   colunas sem as fechar, e é o detalhe que a maioria dos templates erra ao
   correr a linha de bordo a bordo. */
.key-spec + .key-spec::before {
    content: '';
    position: absolute;
    left: 0;
    top: 26px;
    bottom: 26px;
    width: 1px;
    background: #ededed;
}

/* Valor em cima, etiqueta por baixo — invertido face ao habitual, sem tocar no
   HTML (`column-reverse`). O que se procura numa ficha é o valor: "1.58",
   "Dressage". A etiqueta é a nota de rodapé que confirma o que se está a ler, e
   arrumá-la a seguir tira o degrau de etiqueta-antes-de-tudo que faz estes
   blocos parecerem todos iguais. */
.key-spec-text {
    display: flex;
    flex-direction: column-reverse;
    gap: 7px;
    min-width: 0;
}

/* #776e65 sai da família do --primary-color (#423a34) e dá 5.00:1 sobre branco
   (medido no browser), com folga sobre os 4.5:1 do WCAG AA. A etiqueta original
   era 9px a #bbb — 1.9:1, ilegível. */
.key-spec-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #776e65;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

/* Serifa contra a sans da etiqueta: é esse contraste de famílias que dá a leitura
   editorial, e amarra a ficha ao nome do cavalo no título, que usa a mesma
   Playfair. Peso 400 — a serifa não precisa de negrito para pesar. tabular-nums
   para "2020" e "1.58" assentarem na mesma métrica das outras células. */
.key-spec-value {
    font-family: 'Playfair Display', Georgia, serif;
    /* Fluido e não fixo: a 21px o valor mais longo ("Ruço Homogéneo") cabe numa
       coluna de 212px (1440px de viewport) mas parte em duas numa de 195px
       (1200px). O clamp dá 19px até aos ~1300px e sobe aos 21px no ecrã largo,
       onde há espaço para a serifa respirar. */
    font-size: clamp(19px, 1.458vw, 21px);
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
    overflow-wrap: anywhere;
}

/* Banda intermédia (tablet → desktop pequeno): a seis colunas cada célula fica a
   ~130px e um valor longo como "Ruço Homogéneo" parte em duas linhas, deixando a
   fila desalinhada. Baixar o corpo do texto não chega (a 13px continua a partir),
   por isso passa a três colunas — que é o mesmo tratamento do mobile, só com
   outra contagem. Bloco próprio para não mexer no media query dos 768px, que é
   partilhado por meia dúzia de outras secções. */
@media (min-width: 769px) and (max-width: 1199px) {
    .key-specs {
        flex-wrap: wrap;
        border: none;
        gap: 8px;
    }
    .key-spec {
        flex: 0 0 calc(33.333% - 6px);
        border: 1px solid #f0f0f0;
        border-radius: 4px;
        padding: 20px 18px;
    }
    /* Aqui cada célula já é uma caixa com borda própria — o filete recuado, que
       serve para dividir colunas dentro de uma faixa contínua, deixa de fazer
       sentido e passaria por cima da borda. */
    .key-spec + .key-spec::before { display: none; }
}

/* Details section */
.horse-details {
    padding: 50px 0 60px;
    background: #fff;
}

.detail-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color, #c9a96e);
    margin-bottom: 10px;
}

.detail-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.detail-desc {
    font-size: 14px;
    line-height: 1.85;
    color: #777;
}

.detail-desc p { margin-bottom: 16px; }

.detail-line {
    width: 40px;
    height: 2px;
    background: var(--accent-color, #c9a96e);
    margin: 28px 0;
}

/* Specs table */
.specs-table {
    background: #faf8f5;
    border-radius: 4px;
    padding: 28px;
}

.specs-table-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.specs-table-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #bbb;
    font-weight: 600;
    margin-bottom: 16px;
}

.specs-table-line {
    height: 1px;
    background: linear-gradient(to right, var(--accent-color, #c9a96e), transparent);
    margin-bottom: 8px;
}

.st-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.st-row:last-child { border-bottom: none; }

.st-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.st-label i {
    font-size: 14px;
    color: var(--accent-color, #c9a96e);
    width: 18px;
    text-align: center;
}

.st-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Share */
.horse-share {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.horse-share-lbl {
    font-size: 9px;
    color: #bbb;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-right: 4px;
}

.horse-share-ico {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    border-radius: 50%;
}

.horse-share-ico:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Gallery slider arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.gallery-arrow:hover {
    background: var(--primary-color, #111);
    color: #fff;
    border-color: transparent;
}

.gallery-arrow--prev { left: -20px; }
.gallery-arrow--next { right: -20px; }

/* Bento Gallery */
.bento-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 190px;
    gap: 6px;
    border-radius: 6px;
    overflow: hidden;
}

.bento-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #eee;
}

.bento-item:first-child { grid-column: 1 / 3; }

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.bento-item:hover img { transform: scale(1.04); }

.bento-more {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    gap: 6px;
}

.bento-more i { font-size: 22px; }

/* Lightbox (gallery lateral) */
#lb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    align-items: center;
    justify-content: center;
}

#lb-overlay.active { display: flex; }

#lb-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
}

.lb-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .12);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lb-btn:hover { background: rgba(255, 255, 255, .25); }

#lb-prev { left: 20px; }
#lb-next  { right: 20px; }

#lb-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    opacity: .7;
}

#lb-close:hover { opacity: 1; }

#lb-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    letter-spacing: .1em;
}

/* Gallery lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-overlay.open { display: flex; }

.lightbox-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 78vh;
    object-fit: contain;
    border: 2px solid #d1a22b33;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(209, 162, 43, .15);
    border: 1px solid #d1a22b55;
    color: #d1a22b;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lightbox-arrow:hover { background: #d1a22b44; }
.lightbox-arrow.prev  { left: -56px; }
.lightbox-arrow.next  { right: -56px; }

.lightbox-counter {
    color: #ffffff88;
    font-size: .78rem;
    letter-spacing: .1em;
    margin-top: 14px;
}

.lightbox-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    max-width: 90vw;
    overflow-x: auto;
    padding-bottom: 4px;
}

.lightbox-thumbs img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    opacity: .5;
    cursor: pointer;
    border: 2px solid transparent;
    transition: opacity .2s, border-color .2s;
    flex-shrink: 0;
}

.lightbox-thumbs img.active {
    opacity: 1;
    border-color: #d1a22b;
}

/* Pedigree */
.pedigree-section {
    padding: 70px 0;
    background: #faf8f5;
}

.pg-chart {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 56px;
    max-width: 900px;
    margin: 0 auto;
}

.pg-row {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.pg-row--cavalo { justify-content: center; }

.pg-row-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bbb;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.pg-node {
    background: #fff;
    border: 1px solid #e8e2d8;
    border-top: 3px solid rgba(193, 162, 43, .35);
    border-radius: 2px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.pg-row--cavalo .pg-node { flex: 0 0 260px; }

.pg-node--main {
    border-top: 4px solid #d1a22b;
    background: linear-gradient(180deg, #fdfcf7, #faf6ea);
    padding: 20px 20px;
    text-align: center;
}

.pg-role {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #d1a22b;
    font-weight: 700;
}

.pg-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
}

.pg-name--lg { font-size: 22px; }

.pg-info-sm {
    font-size: 11px;
    color: #b5a898;
    margin-top: 1px;
}

.pg-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

/* Horse Tabs (descrição / ficha técnica) */
.horse-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e8e0d4;
    margin-bottom: 28px;
}

.horse-tab {
    background: none;
    border: none;
    padding: 10px 20px 10px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #bbb;
    cursor: pointer;
    position: relative;
    transition: color .2s;
}

.horse-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #d1a22b;
    transform: scaleX(0);
    transition: transform .2s;
}

.horse-tab.active { color: #1a1a1a; }
.horse-tab.active::after { transform: scaleX(1); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Gallery grid (lateral) */
.horse-gallery { width: 100%; }

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 10px;
}

.gallery-item.tall {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

/* Telemóvel: a grelha de duas colunas com linhas de 280px espremia a foto principal
   em ~200x570px e o object-fit:cover cortava dois terços dela. Estava só em
   max-width:400px, por isso um iPhone Pro Max (430px) ou um Android de 412px nem
   apanhava a versão de telemóvel. Aqui cada foto ocupa a largura toda na sua
   proporção real — nada é cortado. */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 6px;
    }
    .gallery-item.tall {
        grid-column: 1;
        grid-row: auto;
    }
    .gallery-item img {
        height: auto;
    }
}

.gallery-all-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    background: none;
    border: 1px solid #d1a22b;
    color: #d1a22b;
    padding: 8px 20px;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.gallery-all-btn:hover {
    background: #d1a22b;
    color: #0d0d0d;
}

/* Video de demonstração (secção antiga) */
.horse-video-section {
    padding: 80px 0;
    color: black !important;
}

.video-subtitle {
    color: #d1a22b;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .2em;
    margin-bottom: 10px;
}

.video-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
}

.video-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.video-wrapper {
    border-radius: 6px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    display: block;
}

/* ── Tabs Vídeo/Histórico (hpd) ── */
.hpd-media-section {
    padding: 60px 0;
    background: #fff;
}

.hpd-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e8e0d4;
    margin-bottom: 40px;
}

.hpd-tab {
    background: none;
    border: none;
    padding: 10px 20px 10px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #bbb;
    cursor: pointer;
    position: relative;
    transition: color .2s;
}

.hpd-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #d1a22b;
    transform: scaleX(0);
    transition: transform .2s;
}

.hpd-tab--active { color: #1a1a1a; }
.hpd-tab--active::after { transform: scaleX(1); }

.hpd-panel { display: none; }
.hpd-panel--active { display: block; }

/* Painel de vídeo de demonstração */
.hpd-video-layout {
    display: flex;
    gap: 48px;
    justify-content: space-between;
}

.hpd-video-caption { flex: 0 0 280px; }

.hpd-video-wrap {
    position: relative;
    flex: 1 1 0;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 2px;
    overflow: hidden;
}

.hpd-video-wrap iframe,
.hpd-video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hpd-video-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.hpd-video-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hpd-video-layout {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .hpd-video-caption {
        flex: none;
        width: 100%;
    }
    .hpd-video-wrap {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
}

/* Painel Histórico */
.hpd-historico-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
}

.hpd-historico-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

.hpd-historico-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.hpd-historico-item:hover img { transform: scale(1.04); }
.hpd-historico-item--video { background: #111; cursor: pointer; }

.hpd-thumb-video {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hpd-thumb-video i {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255,255,255,.85);
    z-index: 2;
    pointer-events: none;
}

/* Lightbox Histórico */
#hpd-lb {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#hpd-lb.open { display: flex; }

.hpd-lb-content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hpd-lb-content img { max-width: 90vw; max-height: 80vh; object-fit: contain; display: block; border-radius: 2px; }
.hpd-lb-content video { max-width: 90vw; max-height: 80vh; display: block; }

.hpd-lb-content .hpd-lb-embed { width: 80vw; max-width: 960px; aspect-ratio: 16/9; }
.hpd-lb-content .hpd-lb-embed iframe { width: 100%; height: 100%; border: none; }

.hpd-lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10000;
}

.hpd-lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.1);
    border: none;
    color: #fff;
    font-size: 1.4rem;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 2px;
    transition: background .2s;
    z-index: 10000;
}

.hpd-lb-arrow:hover { background: rgba(255,255,255,.2); }
.hpd-lb-prev { left: 16px; }
.hpd-lb-next { right: 16px; }

.hpd-lb-counter {
    color: rgba(255,255,255,.5);
    font-size: 12px;
    margin-top: 14px;
    letter-spacing: .1em;
}

.hpd-empty {
    text-align: center;
    padding: 60px 20px;
    color: #ccc;
}

.hpd-empty i {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

.hpd-empty p {
    font-size: 14px;
    margin: 0;
}

/* ── index.blade.php ── */

.products-section-light .form-select {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px 34px 10px 14px;
    background-color: #fff;
    transition: border-color 0.3s;
    cursor: pointer;
}

.products-section-light .form-select:focus {
    border-color: var(--accent-color, #c9a96e);
    box-shadow: none;
}

/* Block scroll when offcanvas is open */
body.offcanvas-open,
body.offcanvas-open #main-wrapper,
body.offcanvas-open .page-wrapper,
body.offcanvas-open .main-content {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none !important;
}

/* ── Horse Show – Mobile Responsive ── */
@media (max-width: 768px) {
    /* Title section */
    .horse-title-section {
        padding: 24px 0 20px;
    }
    .horse-title-name {
        font-size: 26px;
    }
    .horse-title-sub {
        font-size: 15px;
    }

    /* Key specs – grid 2 colunas */
    .key-specs {
        flex-wrap: wrap;
        border: none;
        gap: 8px;
    }
    .key-spec {
        flex: 0 0 calc(50% - 4px);
        border: 1px solid #f0f0f0;
        border-radius: 4px;
        padding: 18px 15px;
    }
    .key-spec + .key-spec::before { display: none; }
    /* O valor mais longo ("Ruço Homogéneo") parte em duas linhas numa coluna de
       176px se ficar no corpo do desktop; a 17px cabe numa linha. Medido a 390px. */
    .key-spec-value {
        font-size: 17px;
    }
}

/* Telemóveis estreitos (SE, Androids de 360px): a coluna cai para 161px e mesmo
   a 17px o valor mais longo parte, deixando duas células mais altas que as
   outras. 16px é o maior corpo que ainda assenta numa linha — medido, não
   estimado. */
@media (max-width: 400px) {
    .key-spec-value {
        font-size: 16px;
    }
    .key-spec:last-child {
        border-right: 1px solid #f0f0f0;
    }

    /* Vídeo & Histórico section */
    .hpd-media-section {
        padding: 30px 0;
    }
    .hpd-tabs {
        margin-bottom: 20px;
    }
    .hpd-tab {
        font-size: 11px;
        padding: 8px 12px 8px 0;
    }
    .hpd-video-wrap {
        max-width: 100%;
        width: 100%;
    }

    /* Galeria & detalhes */
    .horse-details {
        padding: 30px 0 40px;
    }


    /* Horse tabs (descrição/ficha) */
    .horse-tabs {
        margin-bottom: 16px;
    }
    .horse-tab {
        font-size: 12px;
        padding: 8px 14px 8px 0;
    }
}

/* ── Header user dropdown ────────────────────────────────── */
.hdr-user { position: relative; }

/* Botão para a loja online (site separado). Fica antes do seletor de idioma e é
   o único elemento do header com fundo — é uma saída do site, não navegação. */
.hdr-store-btn{
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    color: var(--primary-color);
    font-family: var(--default-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 4px;
    margin-right: 18px;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.25s ease;
}

.hdr-store-btn:hover{
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-1px);
}

@media (max-width: 1199px){
    .hdr-store-btn{ display: none; }   /* no mobile vive dentro do menu */
}

.mobile-auth-item--store{
    color: var(--accent-color);
    font-weight: 700;
}


.hdr-user__btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.18);
    color: var(--white-color);
    cursor: pointer;
    padding: 4px 0 4px 16px;
    margin-left: 12px;
    transition: opacity 0.2s;
    flex-shrink: 0;
    line-height: 1;
}
.hdr-user__icon { flex-shrink: 0; opacity: 0.9; }
.hdr-user__text { display: flex; flex-direction: column; align-items: flex-start; }
.hdr-user__btn:hover,
.hdr-user__btn.is-open { opacity: 0.8; }

.hdr-user__greeting {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.6;
    letter-spacing: 0.5px;
    text-transform: none;
    display: block;
    margin-bottom: 2px;
}
.hdr-user__uname {
    font-size: 13px;
    font-weight: 600;
    color: var(--white-color);
    display: block;
    white-space: nowrap;
}
.hdr-user__guest-links {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.hdr-user__glink { white-space: nowrap; }
.hdr-user__gsep { opacity: 0.4; }

.hdr-user__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    padding: 8px;
    z-index: 9999;
    animation: hdr-user-in 0.18s ease;
}
.hdr-user__dropdown.is-open { display: block; }

@keyframes hdr-user-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hdr-user__info {
    padding: 8px 10px 10px;
    border-bottom: 1px solid #f0ece4;
    margin-bottom: 6px;
}
.hdr-user__name {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hdr-user__email {
    display: block;
    font-size: 0.72rem;
    color: #aaa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}
.hdr-user__divider { height: 1px; background: #f0ece4; margin: 4px 0; }

.hdr-user__item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 10px;
    border-radius: 7px;
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    text-align: left;
}
.hdr-user__item:hover { background: #f9f8f6; color: var(--primary-color); }
.hdr-user__item--logout:hover { background: #fff3f3; color: #c0392b; }
.hdr-user__item--logout:hover svg { stroke: #c0392b; }

/* ── Mobile auth section ─────────────────────────────────── */
.mobile-menu-auth {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 22px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-auth-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    color: var(--white-color);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background 0.25s;
    -webkit-tap-highlight-color: transparent;
}
.mobile-auth-item:hover { background: rgba(201,169,110,0.25); color: var(--white-color); }
.mobile-auth-item--logout:hover { background: rgba(192,57,43,0.2); }

/* --- ridehorse --- */
.rh-slide{flex-shrink:0}
.rh-nav-btn{width:52px;height:52px;border-radius:50%;border:1.5px solid #e5dfd4;background:transparent;display:flex;align-items:center;justify-content:center;cursor:pointer;color:var(--primary-color);transition:all .3s;flex-shrink:0}
.rh-nav-btn:hover{border-color:var(--accent-color);background:var(--accent-color)}
.rh-nav-btn:disabled{opacity:.3;cursor:not-allowed;background:transparent!important;border-color:#e5dfd4!important}
.rh-dot{width:8px;height:8px;border-radius:50%;background:#e5dfd4;transition:all .35s;cursor:pointer;border:none;padding:0;flex-shrink:0}
.rh-dot.is-active{background:var(--accent-color);width:24px;border-radius:4px}

/* --- services --- */
.svc-cr{position:relative}
.svc-cr__viewport{overflow:hidden;padding:14px 0;margin:-14px 0}
.svc-cr__track{display:flex;gap:24px;transition:transform .5s cubic-bezier(.4,0,.2,1);cursor:grab}
.svc-cr__track.is-dragging{cursor:grabbing;transition:none}
.svc-cr__track.is-dragging a{pointer-events:none}
.svc-cr__card{flex:0 0 calc(33.333% - 16px);min-width:0}
/* Larguras ligeiramente abaixo do "N por página" exacto: sobra sempre um resto
   de carta a espreitar do lado direito, para se perceber que há mais sem
   precisar de arrastar primeiro (pedido do cliente — nada de mexer sozinho,
   mas o corte tem de se ver). */
.svc-cr__nav{display:flex;justify-content:center;align-items:center;gap:20px;margin-top:28px}
.svc-cr__arrow{width:40px;height:40px;border-radius:50%;border:1.5px solid #e5dfd4;background:transparent;display:flex;align-items:center;justify-content:center;cursor:pointer;color:var(--primary-color);transition:all .3s;flex-shrink:0}
.svc-cr__arrow:hover{border-color:var(--accent-color);background:var(--accent-color);color:var(--primary-color)}
.svc-cr__arrow.swiper-button-disabled{opacity:.35;cursor:default;pointer-events:none}
.svc-cr__dots{display:flex;align-items:center;gap:8px}
/* O módulo de paginação do Swiper acrescenta as suas próprias classes
   (swiper-pagination-bullets/horizontal), que trazem position:absolute e
   width:100% — isso empurrava as setas para os cantos do ecrã em vez de as
   deixar juntas ao centro. Repõe o comportamento de flex item normal. */
.svc-cr__dots.swiper-pagination-horizontal{position:static;width:auto;left:auto;bottom:auto}
.svc-cr__dot{width:8px;height:8px;border-radius:50%;background:#e5dfd4;border:none;padding:0;cursor:pointer;transition:all .35s}
.svc-cr__dot.is-active{background:var(--accent-color);width:24px;border-radius:4px}
@media(min-width:992px){.svc-cr__card{flex:0 0 calc(32% - 16px)}}
@media(max-width:991px){.svc-cr__card{flex:0 0 calc(47% - 12px)}}
@media(max-width:640px){.svc-cr__card{flex:0 0 85%}}

/* --- notification-bell --- */
#notif-wrap div::-webkit-scrollbar { width:4px; }
#notif-wrap div::-webkit-scrollbar-track { background:transparent; }
#notif-wrap div::-webkit-scrollbar-thumb { background:#e5dfd4; border-radius:4px; }

/* --- popups --- */
/* ── image-full.blade.php ── */
@keyframes popup-imgfull-enter {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes popup-imgfull-overlay-fade { from { opacity: 0; } to { opacity: 1; } }
.popup-imgfull-overlay { animation: popup-imgfull-overlay-fade 220ms ease-out; }
.popup-imgfull-card { animation: popup-imgfull-enter 380ms cubic-bezier(.2,.9,.3,1.1); }
.popup-imgfull-btn { transition: transform .15s ease, filter .15s ease; }
.popup-imgfull-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.popup-imgfull-close { transition: background .15s ease, transform .15s ease; }
.popup-imgfull-close:hover { background: rgba(255,255,255,0.32) !important; transform: rotate(90deg); }

/* ── image-left.blade.php ── */
@keyframes popup-imgleft-enter {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes popup-imgleft-overlay-fade { from { opacity: 0; } to { opacity: 1; } }
.popup-imgleft-overlay { animation: popup-imgleft-overlay-fade 220ms ease-out; }
.popup-imgleft-card { animation: popup-imgleft-enter 320ms cubic-bezier(.2,.9,.3,1.1); }
.popup-imgleft-btn { transition: transform .15s ease, filter .15s ease; }
.popup-imgleft-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.popup-imgleft-close { transition: background .15s ease, transform .15s ease; }
.popup-imgleft-close:hover { background: rgba(0,0,0,0.12) !important; transform: rotate(90deg); }
@media (max-width: 600px) {
    .popup-imgleft-card { flex-direction: column !important; }
    .popup-imgleft-card > .popup-imgleft-image { flex: 0 0 180px !important; }
}

/* ── promotion.blade.php ── */
@keyframes popup-promo-enter {
    from { opacity: 0; transform: translateY(12px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes popup-promo-overlay-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.popup-promo-overlay { animation: popup-promo-overlay-fade 220ms ease-out; }
.popup-promo-card { animation: popup-promo-enter 320ms cubic-bezier(.2,.9,.3,1.1); }
.popup-promo-btn { transition: transform .15s ease, box-shadow .15s ease, filter .15s ease; }
.popup-promo-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.popup-promo-close { transition: background .15s ease, transform .15s ease; }
.popup-promo-close:hover { background: rgba(0,0,0,0.12) !important; transform: rotate(90deg); }

/* ── form.blade.php ── */
@keyframes popup-form-enter {
    from { opacity: 0; transform: translateY(12px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes popup-form-overlay-fade { from { opacity: 0; } to { opacity: 1; } }
.popup-form-overlay { animation: popup-form-overlay-fade 220ms ease-out; }
.popup-form-card { animation: popup-form-enter 320ms cubic-bezier(.2,.9,.3,1.1); }
.popup-form-btn { transition: transform .15s ease, filter .15s ease, box-shadow .15s ease; }
.popup-form-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.popup-form-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; filter: none; }
.popup-form-close { transition: background .15s ease, transform .15s ease; }
.popup-form-close:hover { background: rgba(0,0,0,0.12) !important; transform: rotate(90deg); }
.popup-form-field {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: rgba(255,255,255,0.7);
    color: inherit;
    transition: border-color .15s ease, box-shadow .15s ease;
    box-sizing: border-box;
}
.popup-form-field:focus {
    outline: none;
    border-color: rgba(0,120,255,0.5);
    box-shadow: 0 0 0 3px rgba(0,120,255,0.12);
}
.popup-form-field-wrap { margin-bottom: 14px; text-align: left; }
.popup-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    opacity: 0.85;
}
.popup-form-required { color: #e63946; font-weight: 700; }
.popup-form-alert {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 14px;
    display: none;
}
.popup-form-alert.is-success { background: rgba(46,204,113,0.12); color: #1e8449; }
.popup-form-alert.is-error { background: rgba(230,57,70,0.1); color: #c0392b; }

/* --- booking-modal-simple --- */
@keyframes bm-spin { to { transform:rotate(360deg); } }

.bm-chip {
    background: #fff;
    border: 1.5px solid #e5dfd4;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    line-height: 1.3;
}
.bm-chip:hover { border-color: var(--accent-color); }
.bm-chip.is-active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.bm-date-group {
    margin-bottom: 18px;
}
.bm-date-group:last-child { margin-bottom: 0; }
.bm-date-group__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.bm-date-group__slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bm-slot {
    background: #fff;
    border: 1.5px solid #e5dfd4;
    border-radius: 8px;
    padding: 9px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.bm-slot:hover { border-color: var(--accent-color); }
.bm-slot.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* --- acc-tabs ---
   O estilo das tabs de alojamento vive em css/acc-tabs.css, carregado pela própria
   página. Havia aqui uma cópia integral que, por vir depois no cascade, tornava
   qualquer alteração ao ficheiro original invisível. Removida. */

/* --- instrutor-pages --- */
/* ── Dashboard ── */
.ma-dash-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}
@media (max-width: 900px) { .ma-dash-grid { grid-template-columns: 1fr; } }
.ma-dash-card { display: flex; flex-direction: column; gap: 8px; }
.ma-dash-card .ma-stat__num { font-size: 2.8rem; line-height: 1; }
.ma-dash-card .ma-stat__label { margin-top: 4px; }
.ma-dash-card .ma-card-cta { margin-top: auto; padding-top: 18px; }
.ma-dash-card .ma-card-cta a {
    color: var(--accent-color, #c9a96e);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}
.ma-dash-card .ma-card-cta a:hover { text-decoration: underline; }

.ma-next-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.ma-next-card__body { flex: 1 1 320px; }
.ma-next-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin: 12px 0 18px;
    color: var(--text-color, #5a5550);
    font-size: 0.92rem;
}
.ma-next-card__meta strong { color: var(--primary-color, #423a34); font-weight: 600; }

.today-list { display: flex; flex-direction: column; gap: 12px; }
.today-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border: 1px solid rgba(90,85,80,0.12);
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.2s ease;
}
.today-item:hover { border-color: rgba(201,169,110,0.45); }
.today-item__time {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--accent-color, #c9a96e);
    font-weight: 500;
}
.today-item__body strong { display: block; color: var(--primary-color, #423a34); font-weight: 600; margin-bottom: 2px; }
.today-item__body span { font-size: 0.85rem; color: var(--text-color, #5a5550); }
.today-item__cta {
    color: var(--accent-color, #c9a96e);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
}
.today-item__cta:hover { text-decoration: underline; }
@media (max-width: 700px) {
    .today-item { grid-template-columns: 68px 1fr; row-gap: 8px; }
    .today-item__badge { grid-column: 2; }
    .today-item__cta { grid-column: 2; }
}

/* ── Reserva show + Aluno show — shared grid ── */
.instrutor-show-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}
@media (max-width: 900px) {
    .instrutor-show-grid { grid-template-columns: 1fr; }
    .instrutor-show-grid__aside { order: -1; }
}

.chip {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.35);
    color: var(--accent-color, #c9a96e);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 2px 4px 2px 0;
}

.note-item {
    background: #f9f8f6;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid rgba(90,85,80,0.08);
}
.note-item + .note-item { margin-top: 12px; }
.note-item__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.note-item__author { color: var(--primary-color, #423a34); font-weight: 600; font-size: 0.9rem; }
.note-item__time { color: var(--text-color, #5a5550); font-size: 0.78rem; }
.note-item__content { margin: 0; color: var(--text-color, #5a5550); white-space: pre-line; line-height: 1.55; }
.ma-form-textarea { font-family: inherit; }

/* ── Alunos ── */
.alunos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.alunos-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.alunos-avatar {
    flex: 0 0 48px; width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.35);
    color: var(--accent-color, #c9a96e);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 600; letter-spacing: 0.02em;
}
.alunos-card-title { margin: 0; font-size: 1.05rem; color: var(--primary-color, #423a34); font-weight: 600; line-height: 1.25; }
.alunos-card-email { margin: 2px 0 0; font-size: 0.78rem; color: var(--text-color, #5a5550); word-break: break-all; }
.alunos-card-stats { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; margin: 0 0 14px; color: var(--text-color, #5a5550); font-size: 0.82rem; }
.alunos-card-stats strong { color: var(--primary-color, #423a34); font-weight: 600; }

/* ── Aluno show ── */
.stats-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.stat-mini {
    flex: 1 1 140px;
    background: #fff;
    border: 1px solid rgba(90,85,80,0.12);
    border-radius: 10px;
    padding: 18px 20px;
}
.stat-mini__num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--accent-color, #c9a96e); margin: 0 0 4px; line-height: 1; font-weight: 500; }
.stat-mini__label { margin: 0; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-color, #5a5550); }

.history-item {
    background: #fff;
    border: 1px solid rgba(90,85,80,0.12);
    border-radius: 10px;
    padding: 16px 20px;
    transition: border-color 0.2s ease;
}
.history-item + .history-item { margin-top: 12px; }
.history-item:hover { border-color: rgba(201,169,110,0.45); }
.history-item__head { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: baseline; margin-bottom: 6px; }
.history-item__date { font-family: 'Playfair Display', serif; font-size: 1.02rem; color: var(--primary-color, #423a34); font-weight: 500; }
.history-item__service { margin: 0; font-size: 0.88rem; color: var(--text-color, #5a5550); }
.history-item__footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.history-item__notes { font-size: 0.78rem; color: var(--text-color, #5a5550); margin: 8px 0 0; padding-top: 8px; border-top: 1px dashed rgba(90,85,80,0.15); }
.history-item__notes strong { color: var(--primary-color, #423a34); font-weight: 600; }
.history-item__cta { color: var(--accent-color, #c9a96e); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; font-weight: 600; }
.history-item__cta:hover { text-decoration: underline; }

.profile-field + .profile-field { margin-top: 14px; }
.profile-field p { margin: 0; }

/* --- instrutor-reservas --- */
/* ma-table-responsive — mobile block layout */
@media (max-width: 640px) {
    .ma-table-responsive table,
    .ma-table-responsive thead,
    .ma-table-responsive tbody,
    .ma-table-responsive th,
    .ma-table-responsive td,
    .ma-table-responsive tr { display: block; }
    .ma-table-responsive thead tr { display: none; }
    .ma-table-responsive tbody tr {
        background: #fff;
        border: 1px solid #ede9e2;
        border-radius: 12px;
        margin-bottom: 12px;
        padding: 4px 0 0;
        overflow: hidden;
    }
    .ma-table-responsive td {
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 10px 16px;
        border: none;
        border-bottom: 1px solid #f4f1ec;
        font-size: 0.88rem;
        color: var(--primary-color, #423a34);
        background: none;
    }
    .ma-table-responsive td:last-child {
        border-bottom: none;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
        padding: 10px 16px 12px;
        background: #faf9f7;
    }
    .ma-table-responsive td::before {
        content: attr(data-label);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #aaa;
        text-transform: uppercase;
    }
    .ma-table-responsive td[data-label=""]::before { display: none; }
    .ma-table-responsive td .ma-btn { padding: 8px 16px !important; font-size: 0.75rem !important; }
    .ma-table-responsive .ma-badge { align-self: flex-start; }
}

/* Pack calendar modal */
.pcal-overlay { position:fixed; inset:0; z-index:9999; background:rgba(0,0,0,0.45); backdrop-filter:blur(3px); display:flex; align-items:center; justify-content:center; padding:20px; }
.pcal-box { background:#fff; border-radius:16px; max-width:780px; width:100%; box-shadow:0 24px 60px rgba(0,0,0,0.16); overflow:hidden; display:flex; flex-direction:column; max-height:88vh; }
.pcal-head { padding:18px 24px 14px; border-bottom:1px solid #f0ece4; display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-shrink:0; }
.pcal-head-info { flex:1; }
.pcal-head-title { font-size:0.95rem; font-weight:700; color:var(--primary-color,#423a34); }
.pcal-head-sub { font-size:0.75rem; color:#aaa; margin-top:2px; }
.pcal-close { background:none; border:none; cursor:pointer; color:#aaa; padding:2px; transition:color 0.2s; line-height:1; }
.pcal-close:hover { color:var(--primary-color,#423a34); }
.pcal-toolbar { display:flex; align-items:center; justify-content:space-between; padding:14px 24px 12px; border-bottom:1px solid #f0ece4; flex-shrink:0; gap:12px; flex-wrap:wrap; }
.pcal-toggle { display:flex; border:1.5px solid #e5dfd4; border-radius:8px; overflow:hidden; }
.pcal-toggle-btn { padding:7px 16px; font-size:0.72rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; background:none; border:none; cursor:pointer; color:#aaa; transition:background 0.15s,color 0.15s; }
.pcal-toggle-btn.is-active { background:var(--accent-color,#c9a96e); color:var(--primary-color,#423a34); }
.pcal-nav { display:flex; align-items:center; gap:10px; }
.pcal-nav-btn { width:30px; height:30px; border-radius:50%; border:1.5px solid #e5dfd4; background:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; color:var(--primary-color,#423a34); transition:border-color 0.2s; font-size:0.85rem; line-height:1; }
.pcal-nav-btn:hover { border-color:var(--accent-color,#c9a96e); }
.pcal-nav-label { font-size:0.82rem; font-weight:700; color:var(--primary-color,#423a34); min-width:140px; text-align:center; }
.pcal-today-btn { padding:6px 14px; border-radius:8px; border:1.5px solid #e5dfd4; background:#fff; font-size:0.72rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--primary-color,#423a34); cursor:pointer; transition:border-color 0.2s; }
.pcal-today-btn:hover { border-color:var(--accent-color,#c9a96e); }
.pcal-body { overflow-y:auto; flex:1; }
.pcal-week { display:grid; grid-template-columns:repeat(7,1fr); gap:6px; padding:16px 20px 20px; }
.pcal-week-day { border:1.5px solid #ede9e2; border-radius:10px; padding:10px 10px 12px; min-height:100px; transition:border-color 0.2s; }
.pcal-week-day.is-today { border-color:var(--accent-color,#c9a96e); }
.pcal-week-dow { font-size:0.62rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:#bbb; margin-bottom:4px; }
.pcal-week-num { font-size:1.25rem; font-weight:700; color:var(--primary-color,#423a34); margin-bottom:8px; line-height:1; }
.pcal-week-day.is-today .pcal-week-num { color:var(--accent-color,#c9a96e); }
.pcal-week-empty { color:#ccc; font-size:1rem; padding-top:4px; }
.pcal-event { background:rgba(201,169,110,0.1); border:1px solid rgba(201,169,110,0.3); border-radius:6px; padding:6px 8px; margin-bottom:5px; }
.pcal-event-time { font-size:0.75rem; font-weight:700; color:var(--primary-color,#423a34); display:block; }
.pcal-event-name { font-size:0.72rem; color:#888; margin-top:1px; display:block; }
.pcal-month-wrap { padding:16px 20px 20px; }
.pcal-month-dow-row { display:grid; grid-template-columns:repeat(7,1fr); margin-bottom:4px; }
.pcal-month-dow { text-align:center; font-size:0.62rem; font-weight:700; color:#ccc; letter-spacing:0.5px; padding:2px 0 6px; }
.pcal-month-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:3px; }
.pcal-month-cell { aspect-ratio:1; border-radius:6px; display:flex; flex-direction:column; align-items:center; justify-content:center; font-size:0.78rem; font-weight:500; color:var(--primary-color,#423a34); cursor:default; }
.pcal-month-cell.is-out { opacity:0.25; }
.pcal-month-cell.is-today { font-weight:700; border:1.5px solid var(--accent-color,#c9a96e); }
.pcal-month-cell.has-session { background:rgba(201,169,110,0.12); font-weight:700; }
.pcal-month-dot { width:4px; height:4px; border-radius:50%; background:var(--accent-color,#c9a96e); margin-top:2px; }
@media (max-width:600px) { .pcal-box{max-width:100%;} .pcal-week{grid-template-columns:repeat(4,1fr);gap:4px;padding:12px;} .pcal-nav-label{min-width:100px;font-size:0.75rem;} }

/* Pack group styles */
.res-pack-group { border:1.5px solid #ede9e2; border-radius:12px; overflow:hidden; margin-bottom:12px; }
.res-pack-header { display:flex; align-items:center; gap:12px; padding:14px 18px; background:#faf9f7; cursor:pointer; user-select:none; transition:background 0.15s; }
.res-pack-header:hover { background:#f5f2ed; }
.res-pack-header-info { flex:1; min-width:0; }
.res-pack-header-name { font-size:0.9rem; font-weight:700; color:var(--primary-color,#423a34); display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.res-pack-header-sub { font-size:0.75rem; color:#aaa; margin-top:2px; }
.res-pack-chevron { color:#bbb; flex-shrink:0; transition:transform 0.25s; }
.res-pack-group.is-open .res-pack-chevron { transform:rotate(180deg); }
.res-pack-sessions { display:none; border-top:1px solid #ede9e2; padding:4px 0 8px; position:relative; }
.res-pack-group.is-open .res-pack-sessions { display:block; }
.res-pack-sessions::before { content:''; position:absolute; left:30px; top:12px; bottom:20px; width:1.5px; background:#e5dfd4; }
.res-pack-session-row { display:flex; align-items:center; gap:12px; padding:10px 18px 10px 54px; flex-wrap:wrap; position:relative; }
.res-pack-session-row::before { content:''; position:absolute; left:30px; top:50%; width:16px; height:1.5px; background:#e5dfd4; }
.res-pack-session-row::after { content:''; position:absolute; left:44px; top:50%; transform:translateY(-50%); width:5px; height:5px; border-radius:50%; background:var(--accent-color,#c9a96e); opacity:0.6; }
.res-pack-session-row + .res-pack-session-row { border-top:1px solid #f4f1ec; }
.res-pack-session-info { flex:1; min-width:0; }
.res-pack-session-date { font-size:0.82rem; font-weight:600; color:var(--primary-color,#423a34); }
.res-pack-session-name { font-size:0.75rem; color:#888; margin-top:1px; }
.res-pack-session-actions { display:flex; gap:8px; flex-shrink:0; }

/* ma-table-responsive — mobile grid layout (instrutor context) */
@media (max-width: 640px) {
    .ma-table-responsive table,
    .ma-table-responsive thead,
    .ma-table-responsive tbody,
    .ma-table-responsive th { display: block; }
    .ma-table-responsive thead tr { display: none; }
    .ma-table-responsive tbody tr {
        display: grid;
        grid-template-columns: 54px 1fr auto;
        grid-template-rows: auto auto auto;
        background: #fff;
        border: 1px solid #ede9e2;
        border-radius: 12px;
        margin-bottom: 10px;
        padding: 14px 14px 14px 0;
    }
    .ma-table-responsive td { display: block; padding: 0; border: none !important; background: none; }
    .ma-table-responsive td::before { display: none; }
    .ma-table-responsive td[data-label="Data"] {
        grid-column: 1; grid-row: 1 / 4;
        display: flex; flex-direction: column;
        align-items: center; justify-content: center; gap: 3px;
    }
    .ma-table-responsive td[data-label="Data"] .card-date { display: block; font-size: 0.72rem; font-weight: 600; color: var(--primary-color, #423a34); text-align: center; line-height: 1.2; }
    .ma-table-responsive td[data-label="Data"] .card-time { display: block; font-size: 0.8rem; font-weight: 700; color: var(--accent-color, #c9a96e); text-align: center; }
    .ma-table-responsive td[data-label="Aluno"] { grid-column: 2; grid-row: 1; font-weight: 700; font-size: 0.88rem; color: var(--primary-color, #423a34); padding-bottom: 4px; }
    .ma-table-responsive td[data-label="Estado"] { grid-column: 3; grid-row: 1; display: flex; align-items: flex-start; justify-content: flex-end; padding-left: 8px; }
    .ma-table-responsive td[data-label="Estado"] .ma-badge { font-size: 0.6rem !important; }
    .ma-table-responsive td[data-label="Serviço"] { grid-column: 2 / 4; grid-row: 2; font-size: 0.78rem; color: #888; padding-bottom: 10px; }
    .ma-table-responsive td[data-label=""] { grid-column: 2 / 4; grid-row: 3; display: flex; gap: 16px; align-items: center; }
    .ma-table-responsive td[data-label=""] .ma-btn { background: none !important; border: none !important; padding: 0 !important; font-size: 0.78rem !important; font-weight: 700 !important; color: var(--accent-color, #c9a96e) !important; letter-spacing: 0.5px; text-transform: uppercase; box-shadow: none !important; }
    .ma-table-responsive td[data-label=""] .ma-btn::after { content: ' →'; }
    .ma-table-responsive td[data-label=""] .ma-btn-primary { color: var(--primary-color, #423a34) !important; }
    .res-pack-session-row { padding-left: 18px; }
    .res-pack-session-actions { width: 100%; justify-content: flex-end; }
}

/* --- instrutor-aulas --- */
/* Pack group + calendar — same as instrutor-reservas.css */
.pcal-overlay { position:fixed; inset:0; z-index:9999; background:rgba(0,0,0,0.45); backdrop-filter:blur(3px); display:flex; align-items:center; justify-content:center; padding:20px; }
.pcal-box { background:#fff; border-radius:16px; max-width:780px; width:100%; box-shadow:0 24px 60px rgba(0,0,0,0.16); overflow:hidden; display:flex; flex-direction:column; max-height:88vh; }
.pcal-head { padding:18px 24px 14px; border-bottom:1px solid #f0ece4; display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-shrink:0; }
.pcal-head-info { flex:1; }
.pcal-head-title { font-size:0.95rem; font-weight:700; color:var(--primary-color,#423a34); }
.pcal-head-sub { font-size:0.75rem; color:#aaa; margin-top:2px; }
.pcal-close { background:none; border:none; cursor:pointer; color:#aaa; padding:2px; transition:color 0.2s; line-height:1; }
.pcal-close:hover { color:var(--primary-color,#423a34); }
.pcal-toolbar { display:flex; align-items:center; justify-content:space-between; padding:14px 24px 12px; border-bottom:1px solid #f0ece4; flex-shrink:0; gap:12px; flex-wrap:wrap; }
.pcal-toggle { display:flex; border:1.5px solid #e5dfd4; border-radius:8px; overflow:hidden; }
.pcal-toggle-btn { padding:7px 16px; font-size:0.72rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; background:none; border:none; cursor:pointer; color:#aaa; transition:background 0.15s,color 0.15s; }
.pcal-toggle-btn.is-active { background:var(--accent-color,#c9a96e); color:var(--primary-color,#423a34); }
.pcal-nav { display:flex; align-items:center; gap:10px; }
.pcal-nav-btn { width:30px; height:30px; border-radius:50%; border:1.5px solid #e5dfd4; background:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; color:var(--primary-color,#423a34); transition:border-color 0.2s; font-size:0.85rem; line-height:1; }
.pcal-nav-btn:hover { border-color:var(--accent-color,#c9a96e); }
.pcal-nav-label { font-size:0.82rem; font-weight:700; color:var(--primary-color,#423a34); min-width:140px; text-align:center; }
.pcal-today-btn { padding:6px 14px; border-radius:8px; border:1.5px solid #e5dfd4; background:#fff; font-size:0.72rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--primary-color,#423a34); cursor:pointer; transition:border-color 0.2s; }
.pcal-today-btn:hover { border-color:var(--accent-color,#c9a96e); }
.pcal-body { overflow-y:auto; flex:1; }
.pcal-week { display:grid; grid-template-columns:repeat(7,1fr); gap:6px; padding:16px 20px 20px; }
.pcal-week-day { border:1.5px solid #ede9e2; border-radius:10px; padding:10px 10px 12px; min-height:100px; transition:border-color 0.2s; }
.pcal-week-day.is-today { border-color:var(--accent-color,#c9a96e); }
.pcal-week-dow { font-size:0.62rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:#bbb; margin-bottom:4px; }
.pcal-week-num { font-size:1.25rem; font-weight:700; color:var(--primary-color,#423a34); margin-bottom:8px; line-height:1; }
.pcal-week-day.is-today .pcal-week-num { color:var(--accent-color,#c9a96e); }
.pcal-week-empty { color:#ccc; font-size:1rem; padding-top:4px; }
.pcal-event { background:rgba(201,169,110,0.1); border:1px solid rgba(201,169,110,0.3); border-radius:6px; padding:6px 8px; margin-bottom:5px; }
.pcal-event-time { font-size:0.75rem; font-weight:700; color:var(--primary-color,#423a34); display:block; }
.pcal-event-name { font-size:0.72rem; color:#888; margin-top:1px; display:block; }
.pcal-month-wrap { padding:16px 20px 20px; }
.pcal-month-dow-row { display:grid; grid-template-columns:repeat(7,1fr); margin-bottom:4px; }
.pcal-month-dow { text-align:center; font-size:0.62rem; font-weight:700; color:#ccc; letter-spacing:0.5px; padding:2px 0 6px; }
.pcal-month-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:3px; }
.pcal-month-cell { aspect-ratio:1; border-radius:6px; display:flex; flex-direction:column; align-items:center; justify-content:center; font-size:0.78rem; font-weight:500; color:var(--primary-color,#423a34); cursor:default; }
.pcal-month-cell.is-out { opacity:0.25; }
.pcal-month-cell.is-today { font-weight:700; border:1.5px solid var(--accent-color,#c9a96e); }
.pcal-month-cell.has-session { background:rgba(201,169,110,0.12); font-weight:700; }
.pcal-month-dot { width:4px; height:4px; border-radius:50%; background:var(--accent-color,#c9a96e); margin-top:2px; }
@media (max-width:600px) { .pcal-box{max-width:100%;} .pcal-week{grid-template-columns:repeat(4,1fr);gap:4px;padding:12px;} .pcal-nav-label{min-width:100px;font-size:0.75rem;} }

.res-pack-group { border:1.5px solid #ede9e2; border-radius:12px; overflow:hidden; margin-bottom:12px; }
.res-pack-header { display:flex; align-items:center; gap:12px; padding:14px 18px; background:#faf9f7; cursor:pointer; user-select:none; transition:background 0.15s; }
.res-pack-header:hover { background:#f5f2ed; }
.res-pack-header-info { flex:1; min-width:0; }
.res-pack-header-name { font-size:0.9rem; font-weight:700; color:var(--primary-color,#423a34); display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.res-pack-header-sub { font-size:0.75rem; color:#aaa; margin-top:2px; }
.res-pack-chevron { color:#bbb; flex-shrink:0; transition:transform 0.25s; }
.res-pack-group.is-open .res-pack-chevron { transform:rotate(180deg); }
.res-pack-sessions { display:none; border-top:1px solid #ede9e2; padding:4px 0 8px; position:relative; }
.res-pack-group.is-open .res-pack-sessions { display:block; }
.res-pack-sessions::before { content:''; position:absolute; left:30px; top:12px; bottom:20px; width:1.5px; background:#e5dfd4; }
.res-pack-session-row { display:flex; align-items:center; gap:12px; padding:10px 18px 10px 54px; flex-wrap:wrap; position:relative; }
.res-pack-session-row::before { content:''; position:absolute; left:30px; top:50%; width:16px; height:1.5px; background:#e5dfd4; }
.res-pack-session-row::after { content:''; position:absolute; left:44px; top:50%; transform:translateY(-50%); width:5px; height:5px; border-radius:50%; background:var(--accent-color,#c9a96e); opacity:0.6; }
.res-pack-session-row + .res-pack-session-row { border-top:1px solid #f4f1ec; }
.res-pack-session-info { flex:1; min-width:0; }
.res-pack-session-date { font-size:0.82rem; font-weight:600; color:var(--primary-color,#423a34); }
.res-pack-session-name { font-size:0.75rem; color:#888; margin-top:1px; }
.res-pack-session-actions { display:flex; gap:8px; flex-shrink:0; }

/* ma-table-responsive — aulas mobile grid */
@media (max-width: 640px) {
    .ma-table-responsive table,
    .ma-table-responsive thead,
    .ma-table-responsive tbody,
    .ma-table-responsive th { display: block; }
    .ma-table-responsive thead tr { display: none; }
    .ma-table-responsive tbody tr {
        display: grid;
        grid-template-columns: 54px 1fr auto;
        grid-template-rows: auto auto auto;
        background: #fff;
        border: 1px solid #ede9e2;
        border-radius: 12px;
        margin-bottom: 10px;
        padding: 14px 14px 14px 0;
    }
    .ma-table-responsive td { display: block; padding: 0; border: none !important; background: none; }
    .ma-table-responsive td::before { display: none; }
    .ma-table-responsive td[data-label="Data"] { grid-column: 1; grid-row: 1 / 4; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; }
    .ma-table-responsive td[data-label="Data"] .card-date { display: block; font-size: 0.72rem; font-weight: 600; color: var(--primary-color, #423a34); text-align: center; line-height: 1.2; }
    .ma-table-responsive td[data-label="Data"] .card-time { display: block; font-size: 0.8rem; font-weight: 700; color: var(--accent-color, #c9a96e); text-align: center; }
    .ma-table-responsive td[data-label="Aluno"] { grid-column: 2; grid-row: 1; font-weight: 700; font-size: 0.88rem; color: var(--primary-color, #423a34); padding-bottom: 4px; }
    .ma-table-responsive td[data-label="Estado"] { grid-column: 3; grid-row: 1; display: flex; align-items: flex-start; justify-content: flex-end; padding-left: 8px; }
    .ma-table-responsive td[data-label="Estado"] .ma-badge { font-size: 0.6rem !important; }
    .ma-table-responsive td[data-label="Serviço"] { grid-column: 2 / 4; grid-row: 2; font-size: 0.78rem; color: #888; padding-bottom: 10px; }
    .ma-table-responsive td[data-label=""] { grid-column: 2 / 4; grid-row: 3; display: flex; gap: 16px; align-items: center; }
    .ma-table-responsive td[data-label=""] .ma-btn { background: none !important; border: none !important; padding: 0 !important; font-size: 0.78rem !important; font-weight: 700 !important; color: var(--accent-color, #c9a96e) !important; letter-spacing: 0.5px; text-transform: uppercase; box-shadow: none !important; }
    .ma-table-responsive td[data-label=""] .ma-btn::after { content: ' →'; }
    .ma-table-responsive td[data-label=""] .ma-btn-primary { color: var(--primary-color, #423a34) !important; }
    .res-pack-session-row { padding-left: 18px; }
    .res-pack-session-actions { width: 100%; justify-content: flex-end; }
}

/* --- minha-area-pages --- */
/* ma-table-responsive — mobile cards para reservas */
@media (max-width: 640px) {
    .ma-table-responsive table,
    .ma-table-responsive thead,
    .ma-table-responsive tbody,
    .ma-table-responsive th,
    .ma-table-responsive td,
    .ma-table-responsive tr { display: block; }
    .ma-table-responsive thead tr { display: none; }
    .ma-table-responsive tbody tr {
        background: #fff;
        border: 1px solid #ede9e2;
        border-radius: 12px;
        margin-bottom: 12px;
        padding: 4px 0 0;
        overflow: hidden;
    }
    .ma-table-responsive td {
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 10px 16px;
        border: none;
        border-bottom: 1px solid #f4f1ec;
        font-size: 0.88rem;
        color: var(--primary-color, #423a34);
        background: none;
    }
    .ma-table-responsive td:last-child {
        border-bottom: none;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
        padding: 10px 16px 12px;
        background: #faf9f7;
    }
    .ma-table-responsive td::before {
        content: attr(data-label);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #aaa;
        text-transform: uppercase;
    }
    .ma-table-responsive td[data-label=""]::before { display: none; }
    .ma-table-responsive td .ma-btn { padding: 8px 16px !important; font-size: 0.75rem !important; }
    .ma-table-responsive .ma-badge { align-self: flex-start; margin-top: 2px; }
}

/* reservar-show — slot groups */
.reservar-slot-group__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.reservar-slot-group__row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* --- restricted --- */
.restricted-hero {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: flex-end;
    padding: 140px 0 60px;
    border-bottom: 6px solid var(--accent-color);
    overflow: hidden;
}
.restricted-hero__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.6);
    transform: scale(1.06);
    z-index: 0;
}
.restricted-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,16,12,0.5) 0%, rgba(20,16,12,0.85) 100%);
    z-index: 1;
}
.restricted-hero__content { position: relative; z-index: 2; max-width: 720px; }
.restricted-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent-color);
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    margin-bottom: 18px;
}
.restricted-hero__title {
    font-family: var(--default-font);
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.05;
    margin: 0 0 24px;
}
.restricted-hero__title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent-color);
}
.restricted-hero__meta { display: flex; flex-wrap: wrap; gap: 10px; }
.restricted-hero__meta span {
    display: inline-block;
    padding: 7px 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.85rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.restricted-gate { padding: 80px 0 100px; background: #faf8f4; }
.restricted-gate__card {
    max-width: 560px; margin: 0 auto;
    background: #fff;
    border: 1px solid #eee6d9;
    border-radius: 14px;
    padding: 48px 44px;
    box-shadow: 0 8px 32px rgba(59,48,40,0.06);
}
.restricted-gate__title {
    font-family: var(--default-font);
    color: var(--primary-color);
    font-size: 1.6rem; font-weight: 600; line-height: 1.25;
    margin: 0 0 14px;
}
.restricted-gate__title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent-color);
}
.restricted-gate__lead { color: #6e6358; font-size: 0.95rem; line-height: 1.6; margin: 0 0 28px; }
.restricted-gate__actions { display: flex; flex-direction: column; gap: 10px; }
.restricted-gate__divider {
    display: flex; align-items: center; gap: 14px;
    margin: 28px 0 24px;
}
.restricted-gate__divider::before,
.restricted-gate__divider::after { content: ""; flex: 1; height: 1px; background: #eee6d9; }
.restricted-gate__divider span {
    color: #9a8c7a;
    font-size: 0.72rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 640px) {
    .restricted-hero { min-height: 50vh; padding: 110px 0 40px; }
    .restricted-gate { padding: 50px 0 70px; }
    .restricted-gate__card { padding: 36px 28px; border-radius: 12px; }
    .restricted-gate__title { font-size: 1.35rem; }
}

.dc-richtext ul{
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.dc-richtext ul li{
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;
}
.dc-richtext ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    background: url('/themes/criativatek-shop-9/images/icon-check.svg') no-repeat center / contain;
}

/* =========================================================
   Carrossel de cavalos em destaque (.horses-slider)
   ========================================================= */
.horses-slider .horses-swiper{
    overflow: hidden;
    padding-bottom: 10px;
}
.horses-slider .swiper-slide{
    height: auto;
    display: flex;
}
.horses-slider .swiper-slide > .shop-card{
    width: 100%;
    margin-bottom: 0;
}
/* Dentro do carrossel os cards não podem ficar escondidos pelo WOW */
.horses-slider .swiper-slide .wow{
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

/* Setas de navegação */
.horses-slider .horses-nav{
    display: flex;
    gap: 10px;
}
.horses-slider .horses-nav button{
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color, #c9a96e);
    background: transparent;
    color: var(--accent-color, #c9a96e);
    border-radius: 0;
    transition: background .3s ease, color .3s ease;
    line-height: 1;
    padding: 0;
}
.horses-slider .horses-nav button:hover{
    background: var(--accent-color, #c9a96e);
    color: #fff;
}
.horses-slider .horses-nav button.swiper-button-disabled{
    opacity: .4;
    cursor: default;
}

/* Paginação (mobile) */
.horses-slider .horses-slider-pagination{
    position: static;
    margin-top: 24px;
    text-align: center;
}
.horses-slider .horses-slider-pagination .swiper-pagination-bullet-active{
    background: var(--accent-color, #c9a96e);
}

/* ================================================================
   FILTROS SIDEBAR — REMAKE PREMIUM (warm · clean · brand)
   Tipografia consistente + dourado da marca (#c9a96e), sem caixas
   cinza (hairlines + espaço), estados ativos dourados.
   ================================================================ */

/* Cabeçalho "Filtros" */
.hpl-sidebar-header { margin-bottom: 30px; gap: 14px; }
.hpl-sidebar-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color, #423a34);
}
.hpl-sidebar-line {
    background: linear-gradient(to right, rgba(201,169,110,0.65), transparent);
    opacity: 1;
}

/* Secções (Filtros Rápidos / Avançados) — eyebrow dourado */
.hpl-accordion--parent {
    border-bottom: 1px solid rgba(66,58,52,0.10);
    padding-bottom: 4px;
    margin-bottom: 28px;
}
.hpl-accordion--parent > .hpl-accordion-toggle { padding: 4px 0 14px; }
.hpl-parent-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color, #c9a96e);
}
.hpl-accordion--parent > .hpl-accordion-toggle .hpl-accordion-chevron {
    color: var(--accent-color, #c9a96e);
    opacity: 0.75;
}

/* Filtros Rápidos — chips (pills) horizontais, claramente distintos dos avançados */
.hpl-accordion--parent .hpl-parent-body > .d-flex.flex-wrap {
    gap: 8px !important;
}
.hpc-qf-btn {
    display: inline-flex;
    align-items: center;
    width: auto !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: normal;
    color: var(--text-color, #5a5550);
    padding: 10px 18px;
    border: 1px solid rgba(66,58,52,0.14);
    border-radius: 30px;
    background: #fff;
    transition: border-color .22s ease, color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.hpc-qf-btn:hover {
    border-color: var(--accent-color, #c9a96e);
    color: var(--primary-color, #423a34);
    background: rgba(201,169,110,0.08);
    transform: translateY(-1px);
}
.hpc-qf-btn.active {
    background: var(--accent-color, #c9a96e);
    border-color: var(--accent-color, #c9a96e);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(201,169,110,0.30);
}

/* Grupos avançados — sem caixa cinza, hairline + espaço */
.hpl-parent-body .hpl-filter-group {
    background: transparent !important;
    padding: 0 0 20px !important;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(66,58,52,0.09);
}
.hpl-parent-body .hpl-filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 4px !important;
}
.hpl-filter-label {
    font-size: 12px !important;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color, #423a34);
    margin-bottom: 0 !important;
}
.hpl-filter-group.hpl-accordion--open > .hpl-accordion-body { padding-top: 14px; }
.hpl-filter-group .hpl-accordion-chevron { color: var(--accent-color, #c9a96e); opacity: 0.5; }

/* Pills de pelagem (círculo de cor) */
.hpl-coat-pill {
    gap: 8px !important;
    padding: 10px 8px !important;
    font-size: 10px !important;
    min-width: 60px !important;
    border: 1px solid rgba(66,58,52,0.12) !important;
    border-radius: 12px !important;
    color: var(--text-color, #5a5550) !important;
    font-weight: 500;
    background: #fff !important;
}
.hpl-coat-circle { width: 30px !important; height: 30px !important; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05); }
.hpl-coat-pill:hover { border-color: rgba(201,169,110,0.55) !important; color: var(--primary-color, #423a34) !important; }
.hpl-coat-pill.active {
    background: rgba(201,169,110,0.12) !important;
    border-color: var(--accent-color, #c9a96e) !important;
    color: var(--primary-color, #423a34) !important;
    font-weight: 600;
}
.hpl-coat-pill.active .hpl-coat-circle { box-shadow: 0 0 0 2px var(--accent-color, #c9a96e); }

/* Items (Modalidade, Objetivos, Idade, Altura...) */
.hpl-specialty-item {
    padding: 12px 15px !important;
    font-size: 13px !important;
    border: 1px solid rgba(66,58,52,0.12) !important;
    border-radius: 10px !important;
    color: var(--text-color, #5a5550) !important;
    font-weight: 500;
    gap: 10px;
    background: #fff !important;
    transition: all .22s ease;
}
.hpl-specialty-item svg { color: var(--accent-color, #c9a96e); opacity: 0.85; flex-shrink: 0; }
.hpl-specialty-item:hover {
    border-color: rgba(201,169,110,0.55) !important;
    color: var(--primary-color, #423a34) !important;
    background: rgba(201,169,110,0.05) !important;
}
.hpl-specialty-item.active {
    background: rgba(201,169,110,0.12) !important;
    border-color: var(--accent-color, #c9a96e) !important;
    color: var(--primary-color, #423a34) !important;
    font-weight: 600;
}
.hpl-specialty-item.active svg { opacity: 1; }

/* Tags de filtros ativos + limpar — dourado */
.hpl-active-tag {
    background: rgba(201,169,110,0.14);
    color: var(--primary-color, #423a34);
    border: 1px solid rgba(201,169,110,0.35);
    border-radius: 20px;
}
.hpl-clear-link { color: var(--accent-color, #c9a96e); }

/* Coerência de tamanho: chips dos filtros rápidos = items dos avançados (13px) */
.hpl-sidebar-wrapper .hpc-qf-btn,
#filtersOffcanvas .hpc-qf-btn {
    font-size: 13px !important;
    line-height: 1.2 !important;
}

/* ================================================================
   FILTROS — REFINAMENTO (impeccable)
   Rápidos = tabs editoriais c/ sublinhado dourado; grupos avançados
   fechados com título centrado entre as linhas.
   ================================================================ */

/* Filtros Rápidos — tabs editoriais (sublinhado dourado que cresce) */
.hpl-accordion--parent .hpl-parent-body > .d-flex.flex-wrap {
    gap: 6px 22px !important;
    align-items: center;
}
.hpl-sidebar-wrapper .hpc-qf-btn,
#filtersOffcanvas .hpc-qf-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: auto !important;
    padding: 8px 1px !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.4px !important;
    color: #a99f94 !important;
    transition: color .25s ease !important;
}
.hpl-sidebar-wrapper .hpc-qf-btn::after,
#filtersOffcanvas .hpc-qf-btn::after {
    content: '';
    position: absolute;
    left: 1px; right: 1px; bottom: 2px;
    height: 1.5px;
    background: var(--accent-color, #c9a96e);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .35s cubic-bezier(0.22,1,0.36,1);
}
.hpl-sidebar-wrapper .hpc-qf-btn:hover,
#filtersOffcanvas .hpc-qf-btn:hover { color: var(--primary-color, #423a34) !important; }
.hpl-sidebar-wrapper .hpc-qf-btn:hover::after,
#filtersOffcanvas .hpc-qf-btn:hover::after { transform: scaleX(1); }
.hpl-sidebar-wrapper .hpc-qf-btn.active,
#filtersOffcanvas .hpc-qf-btn.active {
    color: var(--accent-color, #c9a96e) !important;
    font-weight: 600 !important;
}
.hpl-sidebar-wrapper .hpc-qf-btn.active::after,
#filtersOffcanvas .hpc-qf-btn.active::after { transform: scaleX(1); }

/* Grupos avançados fechados — título centrado entre as linhas (padding igual) */
.hpl-parent-body .hpl-filter-group {
    padding: 15px 0 !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid rgba(66,58,52,0.09);
}
.hpl-parent-body .hpl-filter-group:last-child {
    border-bottom: none;
    padding-bottom: 6px !important;
}
.hpl-filter-group > .hpl-accordion-toggle { padding: 0 !important; }
.hpl-filter-group.hpl-accordion--open > .hpl-accordion-body { padding-top: 16px !important; }

/* Filtros ativos — tags maiores, X dourado (era azul), "Limpar tudo" maior */
.hpl-active-box .hpl-filter-label { font-size: 12px !important; }
.hpl-active-tag {
    font-size: 12px !important;
    padding: 6px 12px !important;
    gap: 8px !important;
    border-radius: 30px !important;
}
.hpl-active-tag-remove {
    color: var(--accent-color, #c9a96e) !important;
    font-size: 16px !important;
    opacity: 0.8;
    text-decoration: none !important;
    line-height: 1;
}
.hpl-active-tag-remove:hover { opacity: 1; }
.hpl-clear-link {
    font-size: 12px !important;
    color: var(--accent-color, #c9a96e) !important;
    font-weight: 500;
}

/* Galeria da página dos cavalos: masonry em CSS puro (column-width adapta-se
   sozinho a 3/2/1 colunas). height:auto porque o pedido era não cortar as fotos —
   as alturas variáveis são o que dá o ar editorial. */
.horses-gallery{
    columns: 320px;
    column-gap: 16px;
}

.horses-gallery__item{
    break-inside: avoid;
    margin: 0 0 16px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.horses-gallery__item img{
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.horses-gallery__item:hover img{
    transform: scale(1.04);
}

/* ── Faixa de encaminhamento para a venda de cavalos ───────────────────────────
   Aparece em várias páginas, por isso é uma linha e não uma secção: chama à acção
   sem roubar o protagonismo ao conteúdo da página onde está. */
.cta-venda{
    padding: 0 0 90px;
}

.cta-venda__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    padding: 26px 34px;
    border: 1px solid rgba(201,169,110,0.38);
    border-radius: 12px;
    background: rgba(201,169,110,0.05);
}

.cta-venda__text{
    margin: 0;
    font-family: var(--default-font);
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.cta-venda__btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 14px 30px;
    border-radius: 6px;
    font-family: var(--default-font);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.cta-venda__btn:hover{
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(201,169,110,0.42);
}

@media (max-width: 640px){
    .cta-venda{ padding-bottom: 60px; }
    .cta-venda__inner{ padding: 22px 22px 24px; flex-direction: column; align-items: flex-start; gap: 18px; }
    .cta-venda__text{ font-size: 0.92rem; }
    .cta-venda__btn{ width: 100%; justify-content: center; }
}

/* ── Packs: cards curtos e iguais, detalhe no modal ───────────────────────────
   Usado no alojamento de Leiria e na página de Serviços — é o mesmo content_item. */
.acc-pack-card{background:#fff;border-radius:14px;overflow:hidden;box-shadow:0 2px 14px rgba(0,0,0,0.05);display:flex;flex-direction:column;height:100%;cursor:pointer;transition:transform .3s ease,box-shadow .3s ease}
.acc-pack-card:hover,.acc-pack-card:focus-visible{transform:translateY(-4px);box-shadow:0 12px 30px rgba(0,0,0,0.09);outline:none}
.acc-pack-card__media{position:relative;height:170px;flex-shrink:0;overflow:hidden;background:#efeae2}
.acc-pack-card__media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s cubic-bezier(0.22,1,0.36,1)}
.acc-pack-card:hover .acc-pack-card__media img{transform:scale(1.05)}
.acc-pack-card__badge{position:absolute;top:14px;left:14px;max-width:calc(100% - 28px);background:rgba(255,255,255,0.92);color:var(--primary-color);font-family:var(--default-font);font-size:0.64rem;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;padding:5px 12px;border-radius:999px;line-height:1.4}
.acc-pack-card__body{padding:22px 24px 24px;display:flex;flex-direction:column;flex:1}
/* min-height fixa o título a duas linhas para os cards alinharem entre si */
.acc-pack-card__title{font-family:var(--default-font);color:var(--primary-color);font-size:1.02rem;font-weight:600;line-height:1.35;margin:0 0 16px;min-height:2.7em;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.acc-pack-card__list{list-style:none;padding:0;margin:0 0 20px;display:flex;flex-direction:column;gap:7px}
.acc-pack-card__list li{display:flex;align-items:flex-start;gap:8px;font-size:0.8rem;color:var(--text-color);line-height:1.5}
.acc-pack-card__list svg{color:var(--accent-color);flex-shrink:0;margin-top:4px}
.acc-pack-card__more{margin-top:auto;display:inline-flex;align-items:center;gap:8px;color:var(--accent-color);font-family:var(--default-font);font-size:0.7rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;transition:gap .25s ease}
.acc-pack-card:hover .acc-pack-card__more{gap:13px}

.acc-pack-modal{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;padding:24px}
.acc-pack-modal[hidden]{display:none}
.acc-pack-modal__overlay{position:absolute;inset:0;background:rgba(28,25,22,0.72);backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px)}
.acc-pack-modal__dialog{position:relative;background:#fff;border-radius:16px;width:100%;max-width:600px;max-height:88vh;overflow-y:auto;box-shadow:0 30px 80px rgba(0,0,0,0.32);animation:accFade .3s ease}
.acc-pack-modal__close{position:absolute;top:14px;right:14px;z-index:2;width:36px;height:36px;border-radius:50%;border:none;background:rgba(255,255,255,0.92);color:var(--primary-color);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .25s ease}
.acc-pack-modal__close:hover{background:#fff}
.acc-pack-modal__head img{width:100%;height:210px;object-fit:cover;display:block}
.acc-pack-modal__body{padding:28px 32px 32px}
.acc-pack-modal__eyebrow{color:var(--accent-color);font-family:var(--default-font);font-size:0.68rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin:0 0 10px;line-height:1.5}
.acc-pack-modal__title{font-family:var(--default-font);color:var(--primary-color);font-size:1.45rem;font-weight:600;line-height:1.3;margin:0 0 22px}
.acc-pack-modal__list{list-style:none;padding:0;margin:0}
.acc-pack-modal__list li{display:flex;align-items:flex-start;gap:9px;font-size:0.86rem;color:var(--text-color);line-height:1.55;margin-bottom:9px}
.acc-pack-modal__list svg{color:var(--accent-color);flex-shrink:0;margin-top:5px}
.acc-pack-modal__list li.is-subtitle{display:block;color:var(--accent-color);font-size:0.68rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;margin:22px 0 10px}
.acc-pack-modal__list li.is-note{display:block;font-size:0.78rem;font-style:italic;color:#8a8279}
.acc-pack-modal__cta{margin-top:28px;padding-top:22px;border-top:1px solid #f0ece4;display:flex;justify-content:flex-end}
.acc-pack-modal__btn{display:inline-block;background:var(--primary-color);color:var(--accent-color);border:none;cursor:pointer;padding:13px 28px;border-radius:8px;font-family:var(--default-font);font-size:0.74rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;text-decoration:none;transition:background .25s ease,color .25s ease}
.acc-pack-modal__btn:hover{background:var(--accent-color);color:var(--primary-color)}
@media (max-width:640px){
    .acc-pack-modal{padding:12px}
    .acc-pack-modal__body{padding:22px 22px 26px}
    .acc-pack-modal__head img{height:170px}
}

/* ===== CTA do assistente no banner inicial =====
   Segue o vocabulário dos botões do tema (.btn-default): rectângulo de 4px,
   seta à direita que roda 45° no hover, e o fundo a preencher da direita para
   a esquerda. Nada de pílula nem de balão de chat — isso não existe em mais
   lado nenhum do site. */
.hero-chat-cta{
    margin-top: 34px;
}

.hero-chat-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 34px;
    padding: 15px 26px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 4px;
    background: transparent;
    color: var(--white-color);
    font-family: var(--default-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    line-height: 1;
    overflow: hidden;
    transition: color .4s ease-in-out, border-color .4s ease-in-out;
    z-index: 0;
}

.hero-chat-btn::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    background: var(--accent-color);
    transition: width .4s ease-in-out;
    z-index: -1;
}

.hero-chat-btn:hover{
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.hero-chat-btn:hover::after{
    width: 100%;
    left: 0;
    right: auto;
}

.hero-chat-btn svg{
    flex: 0 0 auto;
    color: var(--accent-color);
    transition: transform .4s ease-in-out, color .4s ease-in-out;
}

.hero-chat-btn:hover svg{
    color: var(--primary-color);
    transform: rotate(45deg);
}

@media (max-width: 575px){
    .hero-chat-cta{
        margin-top: 26px;
    }
    .hero-chat-btn{
        gap: 22px;
        padding: 13px 20px;
        font-size: 10px;
        letter-spacing: 1.8px;
    }
}

/* Links dentro das respostas do assistente. O widget é injetado por middleware
   com o CSS do package (azul de sistema) — aqui só se acerta a cor à marca. */
.ai-chat-link{
    color: var(--primary-color, #423a34) !important;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.ai-chat-link:hover{
    color: var(--accent-color, #c9a96e) !important;
}

/* --- about: botão de som do vídeo --- */
.about-video{
    position: relative;
}
.about-video__som{
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.about-video__som:hover{
    background: rgba(0, 0, 0, .75);
    transform: scale(1.06);
}
.about-video__som:focus-visible{
    outline: 2px solid var(--accent-color, #c9a96e);
    outline-offset: 3px;
}
