/* ----- Universal box model ----- */
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* ----- Root variables ----- */
:root
{
	--color-primary: #16263b;
	--color-secondary: #f7f8fa;
	--color-details: #f48335;
	--color-light-gray: hsla(0, 0%, 94%, 0.6);
	--color-dark-gray: rgb(127, 133, 141);
	--color-transparent: rgb(255,255,255, 0.0);
	--color-beije: rgb(238, 233, 225);
}
/* ----- Globals ----- */
html
{
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}
header
{
	height: 80px;
	font-family: "Sa";
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--color-primary);
	color: white;
	font-family: "Space Grotesk", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: bold;
	padding: 0 14% 0 14%;
	position: sticky;
	top: 0;
	z-index: 1000;
}
body
{
	background-color: var(--color-primary);
}
a
{
	text-decoration: none;
	color: var(--color-secondary);
}
a:hover
{
	color: var(--color-details);
}
button:hover
{
	cursor: pointer;
}
h1, h2, h3 , h4
{
	font-family: "Space Grotesk", sans-serif;
	font-optical-sizing: auto;
	font-weight: 460;
	font-style: bold;
	font-size: 2.75rem;
	letter-spacing: 0.02em;
	text-transform: capitalize;
}
p
{
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	text-align: left;
	font-size: 1.125rem;
	line-height: 1.7rem;
	color: var(--color-light-gray);
}
span
{
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: var(--color-details);
}
.logo
{
	width: 52px;
	height: auto;
}
/* ----- Classes ----- */
/* <header> */
.header-container-left
{
	display: flex;
	justify-content: left;
	align-items: center;
	width: 17%;
	gap: 7%;
}
.name
{
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	color: var(--color-secondary);
	margin: 0;
	white-space: nowrap;
}
.header-container-right
{
	display: flex;
	justify-content: right;
	align-items: center;
	width: 50%;
	gap: 6%;
}
.dropdown
{
	position: relative;
	display: inline-block;
}
.dropdown-trigger
{
	display: flex;
	align-items: center;
	gap: 7px;
	background: none;
	border: none;
	color: white;
	font-family: "Space Grotesk", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: color 0.3s;
	white-space: nowrap;
}
.dropdown-trigger:hover
{
	color: var(--color-details);
}
.dropdown-trigger img
{
	width: 0.5rem;
	height: auto;
}
.dropdown-trigger:hover img
{
	transform: rotate(180deg);
}
.rotate
{
	transition: transform 0.3s ease-in-out;
}
.dropdown-menu
{
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 0.75rem;
	width: 12rem;
	background: #ffffff;
	border: 1px solid hsl(210, 18%, 88%);
	border-radius: 10px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, visibility 0.2s;
}
.dropdown:hover .dropdown-menu
{
	opacity: 1;
	visibility: visible;
}
.dropdown-menu a
{
	display: block;
	padding: 0.75rem 1.25rem;
	font-size: 0.875;
	color: hsl(215, 10%, 45%);
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover
{
	background: hsl(210, 15%, 95%);
	color: hsl(215, 35%, 12%);
}
/* ----- Portefólio ----- */
.equipamentos-intro
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: auto;
	color: var(--color-dark-gray);
	padding: 5% 22% 5% 22%;
	row-gap: 2rem;
}
.equipamentos-intro h1
{
	color: white;
	text-align: center;
}
.equipamentos-intro p
{
	text-align: center;
}
.equipamentos-grid-container
{
	display: flex;
	flex-direction: column;
	padding: 4rem 14% 4rem 14%;
	gap: 2rem;
	row-gap: 2rem;
	background: var(--color-secondary);
}
.equipamentos-projetos
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	row-gap: 3rem;
	height: auto;
}
.equipamentos-projeto-container 
{
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--color-dark-gray);
}
.equipamentos-projeto-container:hover
{
	border: 1px solid var(--color-details);
	box-shadow: 10px 2px 8px rgba(0, 0, 0, 0.10);
}
.projeto-img 
{
	width: 100%;
	height: 500px;
	object-fit: cover;
}
.projeto-title-text
{
	font-size: 1.2rem;
	text-align: left;
	width: 100%;
	text-transform: uppercase;
	font-family: 'Outfit', sans-serif;
}
.projeto-arquitectura,
.projeto-estabilidade,
.construtor 
{
	display: flex;
	gap: 0.60rem;
}
.projeto-arquitectura p,
.projeto-estabilidade p,
.construtor p 
{
	color: var(--color-dark-gray);
	margin: 2px 0;
}
.projeto-text-content
{
	padding: 1rem;
	flex: 1;
}
.projeto-est-text
{
	margin-left: 5rem;
}
.portefolio-footer 
{
	margin-top: auto;
	background-color: #f5f5f5;
	border-top: 1px solid #e0e0e0;
	padding: 1rem;
}
.portefolio-footer p 
{
	color: var(--color-dark-gray);
	margin: 2px 0;
}
.materiais-text-container
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.5rem;
}
.materiais-text
{
	color: var(--color-details);
	border: 1px solid var(--color-details);
	padding: 0.5rem 1rem;
	border-radius: 999px;
	background-color: hsl(22 90% 55% / 0.1);
	width: max-content;
}
#p-orange
{
	color: var(--color-details);
}
/* Reparação */
.reparacao-section
{
	padding: 5% 14% 5% 14%;
	height: auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 2rem;
	background-color: #183050;
}
.reparacao-pre-title
{
	width: 100%;
	text-align: left;
	margin-bottom: 1.4rem;
}
.reparacao-title
{
	width: 100%;
	text-align: left;
	color: var(--color-secondary);
}
.reparacao-text-container
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}
.reparacao-text
{
	margin-top: 2rem;
}
.reparacao-grid-container-left-row
{
	display: flex;
	flex-direction: column;
	align-items: left;
	justify-content: center;
	text-align: left;
	gap: 2%;
	width: 85%;
	height: auto;
}
.reparacao-img
{
	width: 570px;
	height: auto;
	border-radius: 10px;
}
/* BOX */
.equipment-card 
{
	width: 100%;
	background: #ffffff;
	border: 1px solid #dfe3e8;
	border-radius: 16px;
	overflow: hidden;
	transition: all 500ms ease;
}
.equipment-card:hover 
{
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
	border-color: rgba(0, 127, 113, 0.3);
}
.equipment-card__inner 
{
	display: flex;
	flex-direction: column;
}
/* Imagem */
.equipment-card__image 
{
	width: 100%;
	min-height: 240px;
	background: #f1f3f5;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid #dfe3e8;
	overflow: hidden;
}
.equipment-card__placeholder {
	text-align: center;
	color: rgba(107, 114, 128, 0.5);
}
.equipment-card__placeholder svg {
	margin: 0 auto 8px;
}
.equipment-card__placeholder p {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
/* Tabs */
.equipment-card__tabs 
{
	font-family: "Outfit", sans-serif;
	display: flex;
	border-bottom: 1px solid #dfe3e8;
	background: var(--color-light-gray);
}
.equipment-card__tab 
{
	flex: 1;
	padding: 12px 16px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.025em;
	border: none;
	border-bottom: 2px solid transparent;
	background: transparent;
	color: #6b7280;
	cursor: pointer;
	transition: all 200ms ease;
}
.equipment-card__tab_inactive
{ 
	font-family: "Outfit", sans-serif;
	flex: 1;
	padding: 12px 16px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.025em;
	color: var(--color-details);
	text-align: center;
	border-bottom: 2px solid var(--color-details);
	transition: all 200ms ease;
	line-height: normal;
}
.equipment-card__tab:hover 
{
	color: #152238;
	background: var(--color-light-gray);
}
.equipment-card__tab.active 
{
	border-bottom-color: var(--color-details);
	color: var(--color-details);
}
/* Painéis */
.equipment-card__panel 
{
	display: none;
	padding: 24px;
	animation: fadeIn 300ms ease;
}
.equipment-card__panel.active 
{
	display: block;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(4px); }
	to   { opacity: 1; transform: translateY(0); }
}
.equipment-card__title 
{
	font-family: 'Space Grotesk', sans-serif;
	font-size: 22px;
	color: #152238;
	margin: 0 0 12px;
}
.equipment-card__subtitle 
{
	font-family: 'Space Grotesk', sans-serif;
	font-size: 18px;
	color: #152238;
	margin: 0 0 16px;
}
.equipment-card__desc 
{
	font-size: 1.125rem;
	line-height: 1.7;
	color: #6b7280;
	margin: 0;
}
.equipment-card__list 
{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.equipment-card__list li 
{
	font-family: "Outfit", sans-serif;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	color: #6b7280;
}
.equipment-card__list .dot 
{
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-details);
	margin-top: 7px;
	flex-shrink: 0;
}
.equipment-card__list li span.dot 
{
	color: transparent;
}
/* Desktop */
@media (min-width: 768px) 
{
	.equipment-card__inner {
		flex-direction: row;
	}
	.equipment-card__image {
		width: 600px;
		min-height: 320px;
		max-height: 400px;
		border-bottom: none;
		border-right: 1px solid #dfe3e8;
		flex-shrink: 0;
	}
	.equipment-card__content {
		flex: 1;
		display: flex;
		flex-direction: column;
	}
	.equipment-card__panel {
		flex: 1;
	}
	.equipment-card__title {
		font-size: 24px;
	}
}
/* contactos */
.contactos
{
	padding: 5% 14% 5% 14%;
	color: var(--color-secondary-text);
	min-height: calc(100vh - 80px);
	height: auto;
	background: linear-gradient(180deg, var(--color-primary), var(--color-primary), rgba(26, 45, 76, 0.6));
}
.contactos-title
{
	color: var(--color-secondary);
}
.title-assist
{
	margin-bottom: 1.4rem;
}
.top-title
{
	color: var(--color-details);
	font-weight: 500;
	font-size: 1rem;
}
.contactos-bot-title
{
	text-align: center;
	margin-top: 2rem;
}
.contactos-text-field, .contactos-message-field, .contact-phone
{
	width: 60%;
	height: 2.4rem;
	margin: 0.7rem;
	background: #183050;
	color: var(--color-light-gray);
	border-radius: 7px;
	padding: 0 1rem 0 1rem;
	border: 2px solid var(--color-light-gray);
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	color: var(--color-secondary);
}
.select-industria
{
	width: 60%;
	height: 2.4rem;
	margin: 0.7rem;
	background: #183050;
	color: var(--color-light-gray);
	border-radius: 7px;
	padding: 0 1rem 0 1rem;
	border: 2px solid var(--color-light-gray);
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	cursor: pointer;
}
.contactos-message-field
{
	padding: 0.5rem 1rem 0.5rem 1rem;
	height: 8rem;
	resize: none;
}
.contactos-message-field:focus, .contactos-text-field:focus
{
	outline: none;
	border: 2px solid var(--color-details);
}
.contactos-enviar-button
{
	margin-top: 30px;
	width: 125px;
	height: 45px;
	padding: 0px 20px;
	border-radius: 999px;
	background-color: var(--color-details);
	color: var(--color-primary);
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	border: none;
	width: 60%;
}
.contactos-enviar-button:hover
{
	box-shadow: 0 0 4px 3px rgba(242, 146, 37, 0.5);
}
.contactos-content
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
/* footer */
footer
{
	border-top: 1px solid var(--color-light-gray);
	padding: 1% 14% 1% 14%;
	background: linear-gradient(rgba(26, 45, 76, 0.6), var(--color-primary), var(--color-primary));
}
.footer-text
{
	display: grid;
	grid-template-columns: auto auto auto;
	padding-bottom: 2%;
	height: auto;
	justify-content: space-evenly;
}
.footer-name
{
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	color: var(--color-secondary);
	margin: 0;
	height: 40px;
	display: flex;
	align-items: center;
}
.footer-access
{
	display: flex;
	flex-direction: column;
	gap: 7%;
	min-height: 100%;
	padding: 1rem;
}
.footer-map
{
	min-height: 100%;
	padding: 1rem;
}
.nav-links
{
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: var(--color-secondary);
}
.nav-links:hover
{
	color: var(--color-details);
}
.footer-contacts div
{
	display: flex;
	flex-direction: flex-start;
	gap: 12px;
	margin-bottom: 15px;
}
.footer-contacts
{
	display: flex;
	flex-direction: column;
	gap: 7%;
	padding: 1rem;
}
.footer-contacts .material-icons 
{
	flex-shrink: 0;
	margin-top: 2px;
}
.footer-contacts-title
{
	width: 100%;
	text-align: left;
}
.footer-contacts-text
{
	display: block;
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: var(--color-secondary);
}
.rights
{
	border-top: 1px solid var(--color-light-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 2% 14% 1% 14%;
}
.rights-reserved
{
	padding: 1.3rem;
	font-size: 1rem;
}
/* ----- Media compatibility ----- */
/* ══════════════════════════════════════════════════
   HAMBURGER + MOBILE NAV
   ══════════════════════════════════════════════════ */
.hamburger
{
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1100;
	padding: 4px;
	flex-shrink: 0;
}
.hamburger span
{
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--color-secondary);
	border-radius: 2px;
	transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
	line-height: unset;
	color: transparent;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav
{
	display: none;
	position: fixed;
	inset: 0;
	top: 80px;
	background-color: var(--color-primary);
	z-index: 1050;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	padding: 2rem 14%;
	gap: 0;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open
{
	transform: translateX(0);
}
.mobile-nav a,
.mobile-nav .mobile-nav-group > span
{
	display: block;
	width: 100%;
	padding: 0.85rem 0;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 600;
	font-size: 1rem;
	color: var(--color-secondary);
	border-bottom: 1px solid rgba(247, 248, 250, 0.12);
	text-align: left;
	cursor: pointer;
	transition: color 0.2s;
	white-space: nowrap;
}
.mobile-nav a:hover,
.mobile-nav .mobile-nav-group > span:hover
{
	color: var(--color-details);
}
.mobile-nav-group
{
	width: 100%;
}
.mobile-nav-group > span
{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	white-space: nowrap;
	overflow: hidden;
}
.mobile-subnav
{
	display: none;
	flex-direction: column;
	padding-left: 1.2rem;
}
.mobile-nav-group.open .mobile-subnav
{
	display: flex;
}
.mobile-subnav a
{
	font-size: 0.9rem;
	font-weight: 400;
	color: var(--color-secondary);
	padding: 0.6rem 0;
	border-bottom: none !important;
}
.mobile-subnav a:hover
{
	color: var(--color-details);
}
/* ══════════════════════════════════════════════════
   BREAKPOINT 1 — Large tablets / small laptops
   max-width: 1200px
   ══════════════════════════════════════════════════ */
@media (max-width: 1200px)
{
	header
	{
		padding: 0 7% 0 7%;
	}
	.mobile-nav
	{
		padding: 2rem 7%;
	}
	.portefolio-intro
	{
		padding: 5% 10% 5% 10%;
	}
	.portefolio-grid-container
	{
		padding: 2rem 8% 2rem 8%;
	}
	.contactos
	{
		padding: 5% 8% 5% 8%;
	}
	footer
	{
		padding: 2% 8% 2% 8%;
	}
	.rights
	{
		margin: 2% 8% 1% 8%;
	}
}
/* ══════════════════════════════════════════════════
   BREAKPOINT 2 — Tablets
   max-width: 900px
   ══════════════════════════════════════════════════ */
@media (max-width: 900px)
{
	/* Header */
	header
	{
		height: 64px;
		padding: 0 5% 0 5%;
	}
	.header-container-left
	{
		width: auto;
		gap: 12px;
	}
	.header-container-right
	{
		display: none;
	}
	.hamburger
	{
		display: flex;
	}
	.mobile-nav
	{
		display: flex;
		top: 64px;
		padding: 2rem 5%;
	}
	/* Typography */
	h1, h2
	{
		font-size: 2.2rem;
		line-height: 2.6rem;
	}
	h3, h4
	{
		font-size: 1.1rem;
		line-height: 1.6rem;
	}
	p
	{
		font-size: 1.05rem;
		line-height: 1.6rem;
	}
	.logo
	{
		width: 36px;
	}
	/* Intro */
	.portefolio-intro
	{
		padding: 6% 6% 6% 6%;
		row-gap: 1.5rem;
	}
	/* Equipment intro */
	.equipamentos-intro
	{
		padding: 5% 8% 5% 8%;
		row-gap: 1.5rem;
	}
	/* Equipment grid */
	.equipamentos-grid-container
	{
		padding: 2rem 5% 2rem 5%;
		gap: 1.5rem;
	}
	/* Cards: stack image on top of content */
	.equipment-card__inner
	{
		flex-direction: column;
	}
	.equipment-card__image
	{
		width: 100%;
		min-height: 260px;
		max-height: 320px;
		border-right: none;
		border-bottom: 1px solid #dfe3e8;
		flex-shrink: unset;
	}
	.equipment-card__content
	{
		flex: 1;
		display: flex;
		flex-direction: column;
	}
	.equipment-card__panel
	{
		flex: unset;
	}
	.equipment-card__title
	{
		font-size: 20px;
	}
	/* Grid — stays 2-col at tablet, cards are wide enough */
	.portefolio-grid-container
	{
		padding: 2rem 5% 2rem 5%;
	}
	.portefolio-projetos
	{
		gap: 1.5rem;
		row-gap: 1.5rem;
	}
	.projeto-img
	{
		height: 200px;
	}
	/* Contacts */
	.contactos
	{
		padding: 8% 5% 8% 5%;
		min-height: calc(100vh - 64px);
		height: auto;
	}
	.contactos-text-field,
	.contactos-message-field,
	.contact-phone,
	.select-industria,
	.contactos-enviar-button
	{
		width: 85%;
	}
	/* Footer */
	footer
	{
		padding: 4% 6% 4% 6%;
	}
	.footer-text
	{
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}
	.footer-map
	{
		grid-column: 1 / -1;
		display: flex;
		justify-content: center;
	}
	.footer-map iframe
	{
		width: 100%;
		max-width: 480px;
		height: 180px;
	}
	.rights
	{
		margin: 2% 6% 1% 6%;
	}
	/* Reparação — hide image when the two columns collapse to one */
	.reparacao-section
	{
		padding: 6% 5% 6% 5%;
	}
	.reparacao-text-container
	{
		grid-template-columns: 1fr;
	}
	.reparacao-grid-container-left-row
	{
		width: 100%;
	}
	.reparacao-img
	{
		display: none;
	}
}
/* ══════════════════════════════════════════════════
   BREAKPOINT 3 — Mobile phones
   max-width: 600px
   ══════════════════════════════════════════════════ */
@media (max-width: 600px)
{
	/* Header */
	header
	{
		height: 56px;
		padding: 0 5% 0 5%;
	}
	.logo
	{
		width: 28px;
	}
	.name
	{
		font-size: 0.85rem;
	}
	.mobile-nav
	{
		top: 56px;
		padding: 1.5rem 5%;
	}
	/* Typography */
	h1, h2
	{
		font-size: 1.75rem;
		line-height: 2.1rem;
	}
	h3, h4
	{
		font-size: 1rem;
		line-height: 1.5rem;
	}
	p
	{
		font-size: 1rem;
		line-height: 1.55rem;
	}
	/* Equipment intro */
	.equipamentos-intro
	{
		padding: 8% 5% 8% 5%;
		row-gap: 1.2rem;
	}
	/* Equipment grid */
	.equipamentos-grid-container
	{
		padding: 1.5rem 5% 1.5rem 5%;
		gap: 1.2rem;
	}
	/* Cards */
	.equipment-card__image
	{
		min-height: 200px;
		max-height: 240px;
	}
	.equipment-card__title
	{
		font-size: 18px;
	}
	.equipment-card__desc
	{
		font-size: 0.95rem;
		line-height: 1.6;
	}
	.equipment-card__panel
	{
		padding: 16px;
	}
	.equipment-card__tab_inactive
	{
		padding: 10px 12px;
		font-size: 13px;
	}
	/* Intro */
	.portefolio-intro
	{
		padding: 10% 5% 10% 5%;
		row-gap: 1.2rem;
	}
	/* Grid — single column on mobile */
	.portefolio-grid-container
	{
		padding: 1.5rem 5% 1.5rem 5%;
	}
	.portefolio-projetos
	{
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.projeto-img
	{
		height: 200px;
	}
	.projeto-title-text
	{
		font-size: 1rem;
	}
	.projeto-arquitectura p,
	.projeto-estabilidade p,
	.construtor p
	{
		font-size: 0.9rem;
	}
	/* Reset the margin that pushes stability text too far right on narrow screens */
	.projeto-est-text
	{
		margin-left: 0;
	}
	/* Contacts */
	.contactos
	{
		padding: 10% 5% 10% 5%;
		min-height: unset;
		height: auto;
	}
	.contactos-text-field,
	.contactos-message-field,
	.contact-phone,
	.select-industria,
	.contactos-enviar-button
	{
		width: 100%;
		margin: 0.5rem 0;
	}
	.contactos-title
	{
		font-size: 2rem;
	}
	/* Footer */
	.footer-text
	{
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.footer-map
	{
		grid-column: unset;
	}
	.footer-map iframe
	{
		width: 100%;
		height: 160px;
	}
	footer
	{
		padding: 6% 5% 6% 5%;
	}
	.rights
	{
		margin: 2% 5% 1% 5%;
	}
	.rights-reserved
	{
		font-size: 0.85rem;
		text-align: center;
	}
	/* Reparação */
	.reparacao-section
	{
		padding: 8% 5% 8% 5%;
	}
	.reparacao-title
	{
		font-size: 2rem;
	}
}
/* ══════════════════════════════════════════════════
   BREAKPOINT 4 — Very small phones
   max-width: 380px
   ══════════════════════════════════════════════════ */
@media (max-width: 380px)
{
	h1, h2
	{
		font-size: 1.5rem;
		line-height: 1.9rem;
	}
	.portefolio-intro
	{
		padding: 12% 5% 12% 5%;
	}
	.equipment-card__image
	{
		min-height: 160px;
		max-height: 200px;
	}
	.equipment-card__title
	{
		font-size: 16px;
	}
}
/* ══════════════════════════════════════════════════
   TOUCH DEVICES — pointer: coarse, hover: none
   Hamburger always shown; subnavs always expanded
   ══════════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse)
{
	.header-container-right
	{
		display: none;
	}
	.hamburger
	{
		display: flex;
		/* Eliminates the 300ms tap delay on touch devices */
		-webkit-tap-highlight-color: transparent;
		touch-action: manipulation;
	}
	.mobile-nav
	{
		display: flex;
	}
	/* Subnavs always open on touch — group label becomes a dim category header */
	.mobile-subnav
	{
		display: flex !important;
	}
	.mobile-nav-group > span
	{
		pointer-events: none;
		font-size: 0.75rem;
		padding: 0.4rem 0 0.2rem 0;
		border-bottom: none;
		text-transform: uppercase;
		letter-spacing: 0.05em;
	}
	/* Subnav links get full link prominence */
	.mobile-subnav a
	{
		font-size: 1rem !important;
		font-weight: 600 !important;
		color: var(--color-dark-gray) !important;
		padding: 0.85rem 0 !important;
		border-bottom: 1px solid rgba(247, 248, 250, 0.12) !important;
	}
	/* Cards: always stacked on touch devices regardless of screen width */
	.equipment-card__inner
	{
		flex-direction: column;
	}
	.equipment-card__image
	{
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #dfe3e8;
		flex-shrink: unset;
	}
}