@charset "utf-8";
/* 

CSS Document 

TemplateMo 615 Amber Folio

https://templatemo.com/tm-615-amber-folio

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
    --gp-orange: #ed8428;
    --gp-terracotta: #cc7253;
    --gp-golden-terracotta: #cc8e53;
    --gp-gray: #7a7a7a;
    --gp-nude: #ead9d0;
    --gp-cream: #fff1d9;
    --gp-soft-cream: #f7efe4;
    --gp-white: #ffffff;
    --gp-gold: #e09e46;
    --gp-light-gold: #edc175;
    --gp-soft-gold: #efbc7f;
    --gp-taupe: #7c6b58;
    --gp-brown-gray: #544941;
    --gp-dark-brown: #3e332b;
    --gp-copper-brown: #744529;
    --gp-deep-brown: #4a2b19;
    --gp-extra-dark-brown: #2b160a;
    --gp-near-black-brown: #1a0f07;

    /* Compatibility variables from the original template */
    --primary-dark: var(--gp-near-black-brown);
    --secondary-dark: var(--gp-extra-dark-brown);
    --accent-color: var(--gp-terracotta);
    --accent-soft: var(--gp-golden-terracotta);
    --text-light: var(--gp-cream);
    --text-gray: rgba(234, 217, 208, 0.72);
    --card-dark: var(--gp-dark-brown);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--primary-dark);
	color: var(--text-light);
	overflow-x: hidden;
	line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
	border-radius: 4px;
}

/* Header Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(234, 217, 208, 0.06);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

nav {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.5px;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
}

.logo:hover {
	color: rgba(255, 255, 255, 0.85);
}

.logo svg {
	width: 32px;
	height: 32px;
	fill: var(--accent-color);
	opacity: 0.9;
	transition: all 0.3s ease;
}

.logo:hover svg {
	opacity: 1;
	transform: rotate(-5deg) scale(1.05);
}

/* =========================================================
   Gabriella Paes - Header Logo
   ========================================================= */

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo.logo-image {
    line-height: 0;
    min-width: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo.logo-image picture {
    display: flex;
    align-items: center;
}

.header-logo-img {
    display: block;
    width: auto;
    height: 64px;
    max-width: 320px;
    object-fit: contain;
}

header.scrolled .header-logo-img {
    height: 58px;
}

.nav-menu {
    margin-left: auto;
}

@media (max-width: 1100px) {
    .header-logo-img {
        height: 56px;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .header-logo-img {
        height: 48px;
        max-width: 220px;
    }
}

@media (max-width: 520px) {
    .header-logo-img {
        height: 42px;
        max-width: min(220px, 58vw);
    }
}

@media (max-width: 360px) {
    .header-logo-img {
        height: 42px;
        max-width: 48px;
    }
}

/* Final Gabriella Paes - Header Logo */

.nav-menu {
	display: flex;
	list-style: none;
	gap: 5px;
}

.nav-menu a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
	padding: 10px 18px;
	position: relative;
	transition: all 0.3s ease;
	border-radius: 6px;
	background: transparent;
	border: 1px solid transparent;
}

.nav-menu a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(243, 156, 18, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.4s ease;
	z-index: -1;
}

.nav-menu a:hover {
	color: rgba(255, 255, 255, 0.9);
	background: linear-gradient(135deg,
			rgba(243, 156, 18, 0.08) 0%,
			rgba(243, 156, 18, 0.03) 100%);
	border-color: rgba(243, 156, 18, 0.2);
	transform: translateY(-1px);
}

.nav-menu a:hover::before {
	width: 100%;
	height: 100%;
	border-radius: 6px;
}

.nav-menu a.active {
	color: var(--accent-color);
	background: rgba(243, 156, 18, 0.1);
	border-color: rgba(243, 156, 18, 0.25);
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.menu-toggle span {
	width: 25px;
	height: 2px;
	background: var(--text-light);
	transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
	margin-top: 0;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.2;
	background-image:
		repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(243, 156, 18, 0.04) 35px, rgba(243, 156, 18, 0.04) 70px),
		repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, .04) 35px, rgba(255, 255, 255, .04) 70px),
		repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(243, 156, 18, 0.03) 50px, rgba(243, 156, 18, 0.03) 100px);
}

/* Animated geometric shapes for hero background */
.hero-section::before {
	content: '';
	position: absolute;
	top: 10%;
	right: 10%;
	width: 300px;
	height: 300px;
	border: 2px solid rgba(243, 156, 18, 0.15);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	animation: morphShape 20s ease-in-out infinite;
	background: radial-gradient(circle at 30% 50%, rgba(243, 156, 18, 0.03), transparent 70%);
}

.hero-section::after {
	content: '';
	position: absolute;
	bottom: 10%;
	left: 5%;
	width: 280px;
	height: 280px;
	border: 2px solid rgba(243, 156, 18, 0.12);
	border-radius: 50%;
	animation: rotateShape 25s linear infinite;
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), transparent 60%);
	box-shadow: 0 0 40px rgba(243, 156, 18, 0.1);
}

/* Additional floating accent shapes */
.hero-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.floating-accent {
	position: absolute;
	border: 1px solid rgba(243, 156, 18, 0.1);
	animation: float 15s ease-in-out infinite;
}

.accent-1 {
	top: 20%;
	left: 10%;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	animation-delay: 0s;
}

.accent-2 {
	bottom: 30%;
	right: 15%;
	width: 100px;
	height: 100px;
	border-radius: 30% 70% 70% 30%;
	animation-delay: -5s;
}

.accent-3 {
	top: 50%;
	right: 30%;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	animation-delay: -10s;
	border-color: rgba(255, 255, 255, 0.05);
}

@keyframes morphShape {

	0%,
	100% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
		transform: rotate(0deg) scale(1);
	}

	33% {
		border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
		transform: rotate(120deg) scale(1.1);
	}

	66% {
		border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
		transform: rotate(240deg) scale(0.95);
	}
}

@keyframes rotateShape {
	0% {
		transform: rotate(0deg) scale(1);
	}

	50% {
		transform: rotate(180deg) scale(1.05);
	}

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

@keyframes float {

	0%,
	100% {
		transform: translateY(0) translateX(0) rotate(0deg);
	}

	25% {
		transform: translateY(-20px) translateX(10px) rotate(90deg);
	}

	50% {
		transform: translateY(10px) translateX(-10px) rotate(180deg);
	}

	75% {
		transform: translateY(-10px) translateX(5px) rotate(270deg);
	}
}

.hero-content {
	text-align: center;
	z-index: 1;
	padding: 0 20px;
}

.hero-title {
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-weight: 900;
	letter-spacing: -2px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.3rem);
	color: var(--text-gray);
	margin-bottom: 40px;
	font-weight: 300;
	letter-spacing: 2px;
}

.cta-button {
	display: inline-block;
	padding: 15px 40px;
	background: var(--accent-color);
	color: var(--primary-dark);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: 2px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

/* Portfolio Section with Coverflow */
.portfolio-section {
	padding: 100px 0;
	position: relative;
	background: var(--primary-dark);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
	padding: 0 20px;
}

.section-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	letter-spacing: -1px;
	margin-bottom: 15px;
}

.section-subtitle {
	color: var(--text-gray);
	font-size: 16px;
	max-width: 600px;
	margin: 0 auto;
}

/* Coverflow Container */
.coverflow-wrapper {
	width: 100%;
	position: relative;
	padding: 40px 0 80px;
}

.coverflow-container {
	width: 900px;
	max-width: 90vw;
	/* Dynamic height based on viewport: min 350px, preferred 45vh, max 500px */
	height: clamp(350px, 45vh, 500px);
	position: relative;
	transform-style: preserve-3d;
	margin: 0 auto;
	perspective: 1200px;
}

.coverflow-item {
	position: absolute;
	/* Dynamic width based on viewport: min 210px, preferred 27vh, max 300px */
	width: clamp(210px, 27vh, 300px);
	/* Dynamic height based on viewport: min 290px, preferred 38vh, max 420px */
	height: clamp(290px, 38vh, 420px);
	left: 50%;
	top: 50%;
	transform-origin: center center;
	cursor: pointer;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

/* Adjust for large screens (27" and above) */
@media (min-height: 900px) {
	.coverflow-container {
		height: clamp(450px, 50vh, 550px);
	}

	.coverflow-item {
		width: clamp(280px, 30vh, 340px);
		height: clamp(390px, 42vh, 480px);
	}
}

/* Adjust for small laptops */
@media (max-height: 768px) {
	.coverflow-container {
		height: clamp(300px, 42vh, 380px);
	}

	.coverflow-item {
		width: clamp(180px, 24vh, 240px);
		height: clamp(250px, 34vh, 320px);
	}
}

/* Reflection Effect */
.coverflow-item::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	transform: scaleY(-1) translateY(1px);
	opacity: 0.15;
	filter: blur(2px);
	mask: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.4) 0%,
			rgba(0, 0, 0, 0.2) 20%,
			rgba(0, 0, 0, 0.1) 40%,
			transparent 60%);
	-webkit-mask: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.4) 0%,
			rgba(0, 0, 0, 0.2) 20%,
			rgba(0, 0, 0, 0.1) 40%,
			transparent 60%);
	pointer-events: none;
}

.portfolio-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.coverflow-item:hover .portfolio-image {
	transform: scale(1.05);
}

.portfolio-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.95) 0%,
			rgba(0, 0, 0, 0.7) 40%,
			rgba(0, 0, 0, 0.3) 70%,
			transparent 100%);
	padding: 30px;
	transform: translateY(85px);
	transition: transform 0.4s ease;
}

.coverflow-item:hover .portfolio-overlay {
	transform: translateY(0);
}

.portfolio-category {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--accent-color);
	margin-bottom: 8px;
	font-weight: 600;
}

.portfolio-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--text-light);
}

.portfolio-description {
	font-size: 13px;
	color: var(--text-gray);
	line-height: 1.5;
}

/* Navigation Controls */
.coverflow-controls {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 10;
}

.control-btn {
	width: 45px;
	height: 45px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	background: rgba(26, 26, 26, 0.8);
	backdrop-filter: blur(10px);
	color: var(--text-light);
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	position: relative;
}

.control-btn:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--primary-dark);
	transform: scale(1.1);
}

/* Adjust play button icon positioning */
#playPauseBtn {
	padding-left: 2px;
}

#playPauseBtn.playing {
	padding-left: 0;
}

/* Indicators */
.indicators {
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	width: 30px;
	border-radius: 4px;
	background: var(--accent-color);
}

/* About Section */
.about-section {
	padding: 100px 30px;
	background: var(--secondary-dark);
}

.about-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-image {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	filter: grayscale(100%);
	transition: filter 0.5s ease;
}

.about-image:hover img {
	filter: grayscale(0%);
}

.about-content h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	margin-bottom: 20px;
	font-weight: 800;
	letter-spacing: -1px;
}

.about-content p {
	color: var(--text-gray);
	line-height: 1.8;
	margin-bottom: 20px;
	font-size: 16px;
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--accent-color);
	margin-bottom: 5px;
}

.stat-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-gray);
}

/* Services Section */
.services-section {
	padding: 100px 30px;
	background: var(--primary-dark);
}

.services-container {
	max-width: 1200px;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.service-card {
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.9));
	padding: 40px 30px;
	border-radius: 12px;
	text-align: center;
	transition: all 0.4s ease;
	border: 1px solid rgba(255, 255, 255, 0.03);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.service-card:hover::before {
	opacity: 0.05;
}

.service-card:hover {
	transform: translateY(-10px);
	border-color: rgba(243, 156, 18, 0.3);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 1));
}

.service-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.05));
	border-radius: 50%;
	transition: all 0.4s ease;
}

.service-card:hover .service-icon {
	transform: scale(1.1);
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.15), rgba(243, 156, 18, 0.1));
}

.service-icon svg {
	width: 30px;
	height: 30px;
	fill: var(--accent-color);
}

.service-title {
	font-size: 1.5rem;
	margin-bottom: 18px;
	font-weight: 700;
	color: var(--text-light);
	letter-spacing: -0.5px;
}

.service-description {
	color: var(--text-gray);
	line-height: 1.8;
	font-size: 15px;
	margin-bottom: 25px;
}

.service-price {
	font-size: 13px;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
}

/* Contact Section */
.contact-section {
	padding: 100px 30px;
	background: var(--secondary-dark);
}

.contact-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.contact-item {
	display: block;
	padding: 30px;
	background: linear-gradient(135deg, rgba(21, 21, 21, 0.9), rgba(15, 15, 15, 1));
	border-radius: 12px;
	transition: all 0.4s ease;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.05);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.contact-item::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.contact-item:hover::before {
	opacity: 0.08;
}

.contact-item:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
	border-color: rgba(243, 156, 18, 0.3);
}

.contact-icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.05));
	border-radius: 50%;
	transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
	transform: rotate(5deg) scale(1.1);
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.2), rgba(243, 156, 18, 0.1));
}

.contact-icon svg {
	width: 24px;
	height: 24px;
	fill: var(--accent-color);
}

.contact-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-gray);
	margin-bottom: 10px;
}

.contact-value {
	color: var(--text-light);
	font-size: 16px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item:hover .contact-value {
	color: var(--accent-color);
}

/* Footer */
footer {
	background: var(--primary-dark);
	padding: 40px 30px;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
}

.social-link {
	width: 45px;
	height: 45px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-gray);
	text-decoration: none;
	transition: all 0.3s ease;
	background: rgba(26, 26, 26, 0.5);
	position: relative;
	overflow: hidden;
}

.social-link::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: var(--accent-color);
	transition: all 0.4s ease;
	transform: translate(-50%, -50%);
}

.social-link:hover::before {
	width: 100%;
	height: 100%;
}

.social-link svg {
	width: 20px;
	height: 20px;
	fill: var(--text-gray);
	z-index: 1;
	transition: all 0.3s ease;
}

.social-link:hover {
	border-color: var(--accent-color);
	transform: translateY(-3px);
}

.social-link:hover svg {
	fill: var(--primary-dark);
}

.footer-text {
	color: var(--text-gray);
	font-size: 14px;
	line-height: 1.8;
}

.footer-text a {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.3s ease;
}

.footer-text a:hover {
	opacity: 0.8;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 86px;
		flex-direction: column;
		background: rgba(10, 10, 10, 0.98);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 30px 0;
		gap: 10px;
		backdrop-filter: blur(10px);
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu a {
		padding: 12px 20px;
		display: block;
		font-size: 16px;
	}

	.menu-toggle {
		display: flex;
	}

	.menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

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

	.menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}

	.coverflow-container {
		height: clamp(280px, 40vh, 350px);
	}

	.coverflow-item {
		width: clamp(170px, 22vh, 220px);
		height: clamp(230px, 30vh, 300px);
	}

	.about-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.stat-number {
		font-size: 1.8rem;
	}

	.contact-info {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	header.scrolled + * {
        scroll-margin-top: 82px;
    }

    header.scrolled .nav-menu {
        top: 74px;
    }
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.coverflow-container {
		height: clamp(250px, 38vh, 320px);
	}

	.coverflow-item {
		width: clamp(150px, 20vh, 200px);
		height: clamp(200px, 28vh, 280px);
	}

	.portfolio-overlay {
		padding: 20px;
	}

	.portfolio-title {
		font-size: 18px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}
}

/* Loading Animation */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
}

.loading-screen.hidden {
	opacity: 0;
	pointer-events: none;
}

.loader {
	width: 50px;
	height: 50px;
	border: 3px solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--accent-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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

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

/* Smooth Reveal Animations */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* =========================================================
   Gabriella Paes - Consolidated Brand Layer
   ========================================================= */

:root {
    --gp-font-display: "Playfair Display", Georgia, serif;
    --gp-font-subtitle: "EB Garamond", Garamond, "Times New Roman", serif;
    --gp-font-card: "Inter Tight", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    font-family: var(--gp-font-card);
    background: var(--gp-near-black-brown);
    color: var(--gp-cream);
}

section {
    scroll-margin-top: 96px;
}

::-webkit-scrollbar-track {
    background: var(--gp-extra-dark-brown);
}

::-webkit-scrollbar-thumb {
    background: var(--gp-terracotta);
}

/* Header */

header {
    background: rgba(26, 15, 7, 0.94);
    border-bottom: 1px solid rgba(234, 217, 208, 0.08);
}

header.scrolled {
    background: rgba(26, 15, 7, 0.98);
    box-shadow: 0 14px 34px rgba(26, 15, 7, 0.26);
}

.nav-menu a {
    color: rgba(234, 217, 208, 0.68);
    font-family: var(--gp-font-card);
}

.nav-menu a:hover {
    color: var(--gp-cream);
    background: linear-gradient(
        135deg,
        rgba(204, 114, 83, 0.14) 0%,
        rgba(204, 142, 83, 0.06) 100%
    );
    border-color: rgba(204, 114, 83, 0.28);
}

.nav-menu a::before {
    background: radial-gradient(circle, rgba(204, 114, 83, 0.16) 0%, transparent 70%);
}

.nav-menu a.active {
    color: var(--gp-soft-gold);
    background: rgba(204, 114, 83, 0.14);
    border-color: rgba(204, 114, 83, 0.32);
}

.menu-toggle span {
    background: var(--gp-cream);
}

/* Global typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
}

.section-title,
.about-content h2,
.plans-cta h3 {
    font-family: var(--gp-font-display);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.section-subtitle {
    font-family: var(--gp-font-subtitle);
    font-weight: 500;
    font-size: clamp(1.18rem, 1.6vw, 1.38rem);
    letter-spacing: 0;
    line-height: 1.32;
}

.service-title,
.plan-card h3 {
    font-family: var(--gp-font-card);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.14;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.hero-title {
    line-height: 1.03;
}

.hero-subtitle {
    line-height: 1.45;
}

.nav-menu a,
.cta-button,
.plan-button,
.contact-label,
.contact-value {
    font-family: var(--gp-font-card);
}

/* Hero */

.hero-section {
    background:
        radial-gradient(circle at 82% 20%, rgba(204, 142, 83, 0.18), transparent 30%),
        radial-gradient(circle at 10% 82%, rgba(204, 114, 83, 0.16), transparent 28%),
        linear-gradient(135deg, #1a0f07 0%, #2b160a 52%, #1a0f07 100%);
}

.hero-bg {
    opacity: 0.26;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(204, 114, 83, 0.055) 35px,
            rgba(204, 114, 83, 0.055) 70px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 35px,
            rgba(255, 241, 217, 0.045) 35px,
            rgba(255, 241, 217, 0.045) 70px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(204, 142, 83, 0.045) 50px,
            rgba(204, 142, 83, 0.045) 100px
        );
}

.hero-section::before {
    border-color: rgba(204, 142, 83, 0.22);
    background: radial-gradient(circle at 30% 50%, rgba(204, 114, 83, 0.08), transparent 70%);
}

.hero-section::after {
    border-color: rgba(204, 114, 83, 0.18);
    background: radial-gradient(circle at 50% 50%, rgba(255, 241, 217, 0.035), transparent 60%);
    box-shadow: 0 0 42px rgba(204, 114, 83, 0.16);
}

.floating-accent {
    border-color: rgba(204, 142, 83, 0.16);
}

.accent-3 {
    border-color: rgba(234, 217, 208, 0.08);
}

.hero-title {
    background: linear-gradient(135deg, #ffffff 0%, #fff1d9 48%, #ead9d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(234, 217, 208, 0.78);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-button {
    background: var(--gp-orange);
    color: var(--gp-near-black-brown);
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(237, 132, 40, 0.18);
}

.cta-button:hover {
    background: var(--gp-terracotta);
    color: var(--gp-white);
    box-shadow: 0 16px 36px rgba(204, 114, 83, 0.28);
}

.cta-button.cta-secondary {
    background: transparent;
    color: var(--gp-cream);
    border: 1px solid rgba(234, 217, 208, 0.34);
    box-shadow: none;
}

.cta-button.cta-secondary:hover {
    background: rgba(234, 217, 208, 0.08);
    border-color: rgba(234, 217, 208, 0.52);
    color: var(--gp-white);
}

/* Método Infinite */

.portfolio-section {
    background:
        radial-gradient(circle at 20% 12%, rgba(204, 114, 83, 0.13), transparent 30%),
        radial-gradient(circle at 82% 88%, rgba(204, 142, 83, 0.12), transparent 34%),
        linear-gradient(180deg, var(--gp-near-black-brown) 0%, var(--gp-extra-dark-brown) 100%);
}

.portfolio-section .section-title {
    color: var(--gp-cream);
}

.portfolio-section .section-subtitle {
    color: rgba(234, 217, 208, 0.74);
}

.coverflow-item {
    border: 1px solid rgba(234, 217, 208, 0.08);
    box-shadow: 0 26px 58px rgba(26, 15, 7, 0.72);
}

.portfolio-overlay {
    transform: translateY(85px);
    background: linear-gradient(
        to top,
        rgba(26, 15, 7, 0.96) 0%,
        rgba(43, 22, 10, 0.78) 42%,
        rgba(43, 22, 10, 0.38) 72%,
        transparent 100%
    );
}

.coverflow-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-category {
    color: var(--gp-soft-gold);
    margin-bottom: 10px;
}

.portfolio-title {
    color: var(--gp-white);
    line-height: 1.05;
    margin-bottom: 10px;
}

.portfolio-description {
    color: rgba(255, 241, 217, 0.72);
    line-height: 1.4;
}

.control-btn {
    border-color: rgba(234, 217, 208, 0.18);
    background: rgba(43, 22, 10, 0.82);
    color: var(--gp-cream);
}

.control-btn:hover {
    background: var(--gp-terracotta);
    border-color: var(--gp-terracotta);
    color: var(--gp-white);
}

.indicator {
    background: rgba(234, 217, 208, 0.24);
}

.indicator.active {
    background: var(--gp-terracotta);
}

/* Light sections */

.target-section,
#services.services-section,
.plans-section,
.about-section,
.contact-section {
    color: var(--gp-dark-brown);
}

.target-section {
    background:
        radial-gradient(circle at 15% 10%, rgba(204, 114, 83, 0.10), transparent 30%),
        linear-gradient(180deg, var(--gp-soft-cream) 0%, var(--gp-cream) 100%);
}

#services.services-section {
    background:
        radial-gradient(circle at 88% 12%, rgba(237, 193, 117, 0.22), transparent 32%),
        linear-gradient(180deg, var(--gp-cream) 0%, var(--gp-soft-cream) 100%);
}

.plans-section {
    padding: 100px 30px;
    background:
        radial-gradient(circle at 18% 12%, rgba(237, 193, 117, 0.22), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(204, 114, 83, 0.16), transparent 28%),
        linear-gradient(180deg, var(--gp-soft-cream) 0%, var(--gp-cream) 100%);
}

.about-section {
    background:
        radial-gradient(circle at 15% 18%, rgba(234, 217, 208, 0.58), transparent 30%),
        linear-gradient(180deg, var(--gp-soft-cream) 0%, var(--gp-white) 100%);
}

.contact-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(237, 193, 117, 0.18), transparent 28%),
        radial-gradient(circle at 88% 78%, rgba(204, 114, 83, 0.12), transparent 30%),
        linear-gradient(180deg, var(--gp-cream) 0%, var(--gp-nude) 100%);
}

.target-section .section-title,
#services .section-title,
.plans-section .section-title,
.about-content h2,
.contact-section .section-title {
    color: var(--gp-dark-brown);
}

.target-section .section-subtitle,
#services .section-subtitle,
.plans-section .section-subtitle,
.contact-section .section-subtitle {
    color: var(--gp-taupe);
}

.plans-section .section-subtitle {
    max-width: 820px;
}

.contact-section .section-subtitle {
    max-width: 760px;
}

/* Shared orange card system */

.gp-orange-card,
.target-section .service-card.gp-orange-card,
#services .service-card.gp-orange-card,
.plans-section .plan-card.gp-orange-card,
.contact-section .contact-item.gp-orange-card,
.about-section .stat-item.gp-orange-card {
    background: var(--gp-orange);
    color: var(--gp-cream);
    border: 1px solid rgba(255, 241, 217, 0.24);
    box-shadow: 0 22px 48px rgba(237, 132, 40, 0.18);
}

.gp-orange-card:hover,
.target-section .service-card.gp-orange-card:hover,
#services .service-card.gp-orange-card:hover,
.plans-section .plan-card.gp-orange-card:hover,
.contact-section .contact-item.gp-orange-card:hover,
.about-section .stat-item.gp-orange-card:hover {
    background: var(--gp-orange);
    border-color: rgba(255, 241, 217, 0.38);
    box-shadow: 0 26px 58px rgba(237, 132, 40, 0.26);
}

.service-card.gp-orange-card:hover,
.plan-card.gp-orange-card:hover,
.contact-item.gp-orange-card:hover,
.stat-item.gp-orange-card:hover {
    transform: translateY(-8px);
}

.service-card.gp-orange-card::before,
.contact-item.gp-orange-card::before {
    background: radial-gradient(circle, rgba(255, 241, 217, 0.26) 0%, transparent 70%);
}

.gp-orange-card h3,
.gp-orange-card p,
.gp-orange-card li,
.gp-orange-card span,
.gp-orange-card .service-title,
.gp-orange-card .service-description,
.gp-orange-card .service-price,
.gp-orange-card .plan-duration,
.gp-orange-card .plan-summary,
.gp-orange-card .plan-description,
.gp-orange-card .plan-features,
.gp-orange-card .plan-note,
.gp-orange-card .contact-label,
.gp-orange-card .contact-value,
.gp-orange-card .stat-number,
.gp-orange-card .stat-label {
    color: var(--gp-cream);
}

#services .service-card.gp-orange-card .service-title,
#services .service-card.gp-orange-card .service-description,
#services .service-card.gp-orange-card .service-price,
.contact-section .contact-item.gp-orange-card .contact-label,
.contact-section .contact-item.gp-orange-card .contact-value,
.plans-section .plan-card.gp-orange-card h3,
.plans-section .plan-card.gp-orange-card .plan-duration,
.plans-section .plan-card.gp-orange-card .plan-summary,
.plans-section .plan-card.gp-orange-card .plan-description,
.plans-section .plan-card.gp-orange-card .plan-features li,
.plans-section .plan-card.gp-orange-card .plan-note {
    color: var(--gp-cream);
}

.gp-card-centered,
.target-section .service-card.gp-card-centered,
.about-section .stat-item.gp-card-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gp-card-centered .service-title,
.gp-card-centered h3 {
    margin: 0 auto;
    max-width: 82%;
    text-wrap: balance;
}

.target-section .service-card.gp-card-centered {
    min-height: 260px;
    padding: 42px 34px;
}

#para-quem .service-card.gp-orange-card.gp-card-centered .service-title {
    font-weight: 400;
    font-size: clamp(1.24rem, 1.7vw, 1.42rem);
    line-height: 1.14;
    letter-spacing: -0.035em;
}

/* Plans */

.plans-container {
    max-width: 1200px;
    margin: 0 auto;
}

.plans-section .section-subtitle {
    max-width: 860px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 34px;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.plan-card-featured.gp-orange-card {
    border-color: rgba(255, 241, 217, 0.54);
    box-shadow: 0 32px 72px rgba(237, 132, 40, 0.30);
}

.plan-card-deep.gp-orange-card {
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 241, 217, 0.14), transparent 34%),
        var(--gp-orange);
}

.plan-badge,
.plan-badge-soft,
.plan-badge-neutral {
    position: static;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 241, 217, 0.18);
    color: var(--gp-cream);
    border: 1px solid rgba(255, 241, 217, 0.26);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
}

.plan-duration {
    margin-bottom: 14px;
    padding-right: 0;
    color: var(--gp-cream);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.plan-card h3 {
    margin: 0 0 18px;
    color: var(--gp-cream);
    font-size: clamp(1.65rem, 2.4vw, 2.15rem);
    font-weight: 500;
    line-height: 1.04;
}

.plan-price {
    margin: 0;
    color: var(--gp-cream);
    font-family: var(--gp-font-display);
    font-size: clamp(2.15rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.plan-price-note {
    margin: 8px 0 24px;
    color: rgba(255, 241, 217, 0.78);
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.35;
}

.plan-summary {
    margin: 0 0 16px;
    color: var(--gp-cream);
    font-size: 1.04rem;
    font-weight: 500;
    line-height: 1.5;
}

.plan-description {
    margin: 0 0 24px;
    color: rgba(255, 241, 217, 0.82);
    line-height: 1.62;
}

.plan-features-title {
    margin: 0 0 12px;
    color: var(--gp-cream);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.plan-features li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: rgba(255, 241, 217, 0.9);
    font-size: 0.95rem;
    line-height: 1.45;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gp-cream);
    font-weight: 700;
}

.plan-note {
    margin: -4px 0 24px;
    color: rgba(255, 241, 217, 0.86);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
}

.plan-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    min-height: 50px;
    padding: 13px 18px;
    border-radius: 999px;
    background: var(--gp-cream);
    color: var(--gp-near-black-brown);
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 800;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.plan-button:hover {
    transform: translateY(-2px);
    background: var(--gp-white);
    color: var(--gp-near-black-brown);
    box-shadow: 0 12px 28px rgba(26, 15, 7, 0.16);
}

.plan-button-secondary {
    background: transparent;
    color: var(--gp-cream);
    border-color: rgba(255, 241, 217, 0.54);
}

.plan-button-secondary:hover {
    background: rgba(255, 241, 217, 0.14);
    color: var(--gp-cream);
    box-shadow: none;
}

.plans-cta {
    margin: 56px auto 0;
    max-width: 820px;
    text-align: center;
    padding: 42px;
    border-radius: 30px;
    background: var(--gp-dark-brown);
    box-shadow: 0 24px 58px rgba(26, 15, 7, 0.24);
}

.plans-cta h3 {
    margin: 0 0 14px;
    color: var(--gp-cream);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.plans-cta p {
    margin: 0 auto 28px;
    max-width: 620px;
    color: rgba(255, 241, 217, 0.78);
    line-height: 1.7;
}

.plans-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.plans-cta .cta-secondary {
    color: var(--gp-cream);
    border-color: rgba(255, 241, 217, 0.42);
}

.plans-cta .cta-secondary:hover {
    background: rgba(255, 241, 217, 0.08);
}

@media (max-width: 1100px) {
    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #planos .plan-card-deep {
        order: 1;
    }

    #planos .plan-card-featured {
        order: 2;
    }

    #planos .plan-card-single {
        order: 3;
    }
}

@media (max-width: 768px) {
    .plans-section {
        padding: 80px 20px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    #planos .plan-card-deep {
        order: 1;
    }

    #planos .plan-card-featured {
        order: 2;
    }

    #planos .plan-card-single {
        order: 3;
    }

    .plan-card {
        padding: 28px;
    }

    .plans-cta {
        padding: 32px 24px;
    }
}




/* About */

.about-content p {
    color: var(--gp-brown-gray);
}

.about-image {
    border-radius: 28px;
    border: 1px solid rgba(204, 114, 83, 0.16);
    box-shadow: 0 24px 58px rgba(62, 51, 43, 0.14);
}

.about-image img {
    filter: grayscale(35%) sepia(10%) saturate(88%);
}

.about-image:hover img {
    filter: grayscale(0%) sepia(0%) saturate(100%);
}

.stat-item {
    padding: 20px 14px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-number {
    color: var(--gp-cream);
}

.stat-label {
    color: rgba(255, 241, 217, 0.84);
}

/* Contact */

.contact-section .contact-item {
    border-radius: 28px;
}

.contact-section .contact-icon {
    background: rgba(255, 241, 217, 0.16);
    color: var(--gp-cream);
}

.contact-section .contact-icon svg {
    fill: currentColor;
}

.contact-label {
    color: rgba(255, 241, 217, 0.78);
}

.contact-value {
    color: var(--gp-cream);
}

.contact-section .contact-item:hover .contact-value {
    color: var(--gp-cream);
}

/* Footer */

footer {
    background:
        radial-gradient(circle at 20% 0%, rgba(237, 132, 40, 0.16), transparent 32%),
        linear-gradient(180deg, var(--gp-dark-brown) 0%, var(--gp-near-black-brown) 100%);
    border-top-color: rgba(234, 217, 208, 0.10);
}

.social-link {
    color: rgba(234, 217, 208, 0.72);
    background: rgba(255, 241, 217, 0.04);
    border-color: rgba(234, 217, 208, 0.14);
}

.social-link::before {
    background: var(--gp-terracotta);
}

.social-link:hover {
    border-color: var(--gp-terracotta);
}

.social-link svg {
    fill: currentColor;
}

.social-link:hover svg,
.social-link-text:hover span {
    fill: var(--gp-white);
    color: var(--gp-white);
}

.social-link-text span {
    position: relative;
    z-index: 1;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: currentColor;
    transition: all 0.3s ease;
}

.footer-text {
    color: rgba(234, 217, 208, 0.70);
}

.footer-text a {
    color: var(--gp-soft-gold);
}

/* Loading */

.loading-screen {
    background: var(--gp-near-black-brown);
}

.loader {
    border-color: rgba(234, 217, 208, 0.14);
    border-top-color: var(--gp-terracotta);
}

/* Responsive brand refinements */

@media (max-width: 1100px) {
    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    section {
        scroll-margin-top: 86px;
    }

    .nav-menu {
        background: rgba(26, 15, 7, 0.98);
    }

    header.scrolled .nav-menu {
        top: 74px;
    }

    .hero-title {
        line-height: 1.06;
    }

    .hero-section {
        min-height: 100vh;
        height: auto;
        padding: 150px 0 90px;
    }

    .hero-subtitle br {
        display: none;
    }

    .portfolio-overlay {
        transform: translateY(70px);
    }

    .coverflow-item:hover .portfolio-overlay {
        transform: translateY(0);
    }

    .portfolio-title {
        line-height: 1.1;
    }

    .target-section .service-card.gp-card-centered {
        min-height: 220px;
        padding: 34px 26px;
    }

    .gp-card-centered .service-title,
    .gp-card-centered h3 {
        max-width: 100%;
    }

    #para-quem .service-card.gp-orange-card.gp-card-centered .service-title {
        font-size: 1.28rem;
    }

    .plans-section {
        padding: 80px 20px;
    }

    .plans-includes {
        padding: 28px;
        border-radius: 24px;
    }

    .plans-includes-list {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

	
	
    .plan-card {
        padding: 28px;
    }

    .plan-duration {
        padding-right: 0;
    }

    .plan-badge,
    .plan-badge-soft,
    .plan-badge-neutral {
        position: static;
        width: fit-content;
        margin-bottom: 16px;
    }

    .plans-cta {
        padding: 32px 24px;
    }

    .about-image {
        border-radius: 22px;
    }

    .stat-item {
        padding: 16px 10px;
    }
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .cta-button {
        width: min(100%, 320px);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .portfolio-overlay {
        transform: translateY(56px);
    }

    .portfolio-title {
        font-size: 18px;
    }

    .target-section .service-card.gp-card-centered {
        min-height: 190px;
        padding: 30px 22px;
    }

    #para-quem .service-card.gp-orange-card.gp-card-centered .service-title {
        font-size: 1.16rem;
        line-height: 1.14;
    }
}

/* =========================================================
   Gabriella Paes - Método Infinite Layout Refinement
   ========================================================= */

/* Anchor behavior: align section starts below the fixed header */
:root {
    --gp-anchor-offset: 32px;
}

html {
    scroll-padding-top: var(--gp-anchor-offset);
}

#metodo {
    scroll-margin-top: var(--gp-anchor-offset);
}

/* Rebalance the Método section so the carousel fits in the viewport */
.portfolio-section {
    min-height: calc(100svh - var(--gp-anchor-offset));
    padding: clamp(42px, 5vh, 64px) 0 clamp(48px, 5vh, 70px);
    justify-content: flex-start;
    overflow: hidden;
}

/* Reduce excessive gap between section text and cards */
.portfolio-section .section-header {
    margin-bottom: clamp(38px, 4.2vh, 52px);
}

.portfolio-section .section-title {
    margin-bottom: 12px;
}

.portfolio-section .section-subtitle {
    max-width: 720px;
}

/* Make the wrapper control the vertical rhythm */
.coverflow-wrapper {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    overflow: visible;
}

/* Slightly larger cards on desktop, without pushing controls out of view */
.coverflow-container {
    height: clamp(390px, 52svh, 560px);
}

.coverflow-item {
    width: clamp(260px, 33svh, 370px);
    height: clamp(360px, 48svh, 520px);
}

/* Controls should participate in layout instead of floating over/cut by the section */
.coverflow-controls {
    position: static;
    transform: none;
    margin-top: 26px;
}

/* Indicators should also stay inside normal flow */
.indicators {
    position: static;
    transform: none;
    margin-top: 4px;
}

/* Keep smaller-height desktop windows usable */
@media (max-height: 768px) and (min-width: 769px) {
    .portfolio-section {
        padding-top: 36px;
        padding-bottom: 44px;
    }

    .portfolio-section .section-header {
        margin-bottom: 18px;
    }

    .coverflow-container {
        height: clamp(340px, 46svh, 410px);
    }

    .coverflow-item {
        width: clamp(240px, 31svh, 310px);
        height: clamp(320px, 43svh, 390px);
    }

    .coverflow-wrapper {
        gap: 12px;
    }
}

/* Mobile: fit title, subtitle, carousel, controls and bullets in one clean view */
@media (max-width: 768px) {
    :root {
        --gp-anchor-offset: 92px;
    }

    #metodo {
        scroll-margin-top: var(--gp-anchor-offset);
    }

    .portfolio-section {
        min-height: calc(100svh - var(--gp-anchor-offset));
        padding: 42px 0 48px;
    }

    .portfolio-section .section-header {
        margin-bottom: 22px;
    }

    .portfolio-section .section-title {
        font-size: clamp(2.15rem, 8.5vw, 3rem);
        line-height: 1.02;
    }

    .portfolio-section .section-subtitle {
        max-width: 86vw;
        font-size: clamp(1.05rem, 4.2vw, 1.24rem);
        line-height: 1.28;
    }

    .coverflow-wrapper {
        gap: 14px;
    }

    .coverflow-container {
        width: 100vw;
        max-width: 100vw;
        height: clamp(350px, 52svh, 460px);
        perspective: 900px;
    }

    .coverflow-item {
        width: clamp(230px, 66vw, 300px);
        height: clamp(320px, 88vw, 410px);
    }

    .control-btn {
        width: 42px;
        height: 42px;
    }

    /* Mobile has no reliable hover, so avoid showing long descriptions by default */
    .portfolio-overlay {
        transform: translateY(0);
        padding: 22px;
    }

    .coverflow-item:hover .portfolio-overlay {
        transform: translateY(0);
    }

    .portfolio-description {
        display: none;
    }

    .portfolio-title {
        font-size: clamp(1.35rem, 6.2vw, 1.9rem);
        line-height: 1.04;
    }

    .portfolio-category {
        font-size: 10px;
        letter-spacing: 0.14em;
    }
}

@media (max-width: 480px) {
    .portfolio-section {
        padding-top: 36px;
        padding-bottom: 42px;
    }

    .portfolio-section .section-header {
        margin-bottom: 18px;
    }

    .coverflow-container {
        height: clamp(330px, 50svh, 430px);
    }

    .coverflow-item {
        width: min(70vw, 280px);
        height: min(94vw, 390px);
    }

    .indicators {
        margin-top: 2px;
    }
}

/* =========================================================
   Gabriella Paes - Método Infinite Overlay Title Safety
   ========================================================= */

/* Default: keeps the current reveal behavior for most cards */
@media (min-width: 769px) {
    .coverflow-item .portfolio-overlay {
        --gp-overlay-shift: 82px;
        transform: translateY(var(--gp-overlay-shift));
    }

    .coverflow-item:hover .portfolio-overlay {
        transform: translateY(0);
    }

    /*
       Cards whose titles need a little more visible area at rest.
       Lower value = more text visible before hover.
    */
    .coverflow-item[data-index="0"] .portfolio-overlay,
    .coverflow-item[data-index="1"] .portfolio-overlay,
    .coverflow-item[data-index="3"] .portfolio-overlay,
	.coverflow-item[data-index="6"] .portfolio-overlay,
    .coverflow-item[data-index="7"] .portfolio-overlay {
        --gp-overlay-shift: 68px;
    }

    /*
       Slightly safer spacing for all carousel titles.
       Helps prevent descenders and second lines from being clipped.
    */
    .portfolio-category {
        margin-bottom: 7px;
    }

    .portfolio-title {
        line-height: 1.02;
        margin-bottom: 8px;
        text-wrap: balance;
    }
}

/* =========================================================
   Gabriella Paes - Section Anchor Alignment
   ========================================================= */

/*
   One anchor variable per menu item.
   Increase a value if the section starts hidden behind the header.
   Decrease a value if too much of the previous section remains visible.
*/

:root {
    --gp-anchor-home: 0px;
    --gp-anchor-metodo: 64px;
    --gp-anchor-para-quem: 60px;
    --gp-anchor-services: 54px;
    --gp-anchor-planos: 64px;
    --gp-anchor-depoimentos: 64px;
    --gp-anchor-instagram: 64px;
    --gp-anchor-about: 32px;
    --gp-anchor-contact: 32px;
}

/* Keep global browser scroll padding neutral.
   Section-specific offsets are handled below. */
html {
    scroll-padding-top: 0;
}

/* Menu target: Início */
#home {
    scroll-margin-top: var(--gp-anchor-home);
}

/* Menu target: Método Infinite */
#metodo {
    scroll-margin-top: var(--gp-anchor-metodo);
}

/* Menu target: Para quem é */
#para-quem {
    scroll-margin-top: var(--gp-anchor-para-quem);
}

/* Menu target: Como funciona */
#services {
    scroll-margin-top: var(--gp-anchor-services);
}

/* Menu target: Planos */
#planos {
    scroll-margin-top: var(--gp-anchor-planos);
}

/* Menu/future target: Depoimentos */
#depoimentos {
    scroll-margin-top: var(--gp-anchor-depoimentos);
}

/* Menu/future target: Instagram */
#instagram {
    scroll-margin-top: var(--gp-anchor-instagram);
}

/* Menu target: Sobre a Gabriella */
#about {
    scroll-margin-top: var(--gp-anchor-about);
}

/* Menu target: Contato */
#contact {
    scroll-margin-top: var(--gp-anchor-contact);
}

/* Mobile anchor calibration */
@media (max-width: 768px) {
    :root {
        --gp-anchor-home: 0px;
        --gp-anchor-metodo: 92px;
        --gp-anchor-para-quem: 92px;
        --gp-anchor-services: 92px;
        --gp-anchor-planos: 92px;
        --gp-anchor-depoimentos: 92px;
        --gp-anchor-instagram: 92px;
        --gp-anchor-about: 92px;
        --gp-anchor-contact: 92px;
    }
}

/* =========================================================
   Gabriella Paes - Target Audience Section Calibration
   ========================================================= */

@media (min-width: 769px) {
    #para-quem.target-section {
        min-height: calc(100svh - 72px);
        padding-top: clamp(82px, 8vh, 110px);
        padding-bottom: clamp(110px, 12vh, 160px);
        display: flex;
        align-items: flex-start;
    }

    #para-quem .services-container {
        width: 100%;
    }
}

/* =========================================================
   Gabriella Paes - Instagram Section
   ========================================================= */

.instagram-section {
    position: relative;
    padding: clamp(90px, 9vh, 130px) 30px;
    background:
        radial-gradient(circle at 18% 12%, rgba(237, 132, 40, 0.16), transparent 30%),
        radial-gradient(circle at 82% 88%, rgba(204, 114, 83, 0.14), transparent 34%),
        linear-gradient(180deg, var(--gp-deep-brown) 0%, var(--gp-near-black-brown) 100%);
    color: var(--gp-cream);
    overflow: hidden;
}

.instagram-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 38px,
            rgba(255, 241, 217, 0.025) 38px,
            rgba(255, 241, 217, 0.025) 76px
        );
    opacity: 0.7;
    pointer-events: none;
}

.instagram-container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.instagram-section .section-header {
    margin-bottom: clamp(34px, 5vh, 56px);
}

.instagram-section .section-title {
    color: var(--gp-cream);
}

.instagram-section .section-subtitle {
    max-width: 760px;
    color: rgba(234, 217, 208, 0.78);
}

.instagram-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 241, 217, 0.22);
    border-radius: 999px;
    color: var(--gp-soft-gold);
    background: rgba(255, 241, 217, 0.05);
    font-family: var(--gp-font-card);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.instagram-widget-frame {
    max-width: 1080px;
    min-height: 420px;
    margin: 0 auto;
    padding: clamp(18px, 3vw, 30px);
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 241, 217, 0.08), rgba(255, 241, 217, 0.035));
    border: 1px solid rgba(255, 241, 217, 0.14);
    box-shadow: 0 28px 70px rgba(26, 15, 7, 0.42);
    overflow: hidden;
}

/* Keep the external widget visually contained */
.instagram-widget-frame .sk-instagram-feed {
    width: 100%;
}

.instagram-actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.instagram-noscript {
    margin: 24px auto 0;
    max-width: 620px;
    color: rgba(255, 241, 217, 0.74);
    text-align: center;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 78px 20px;
    }

    .instagram-widget-frame {
        min-height: 520px;
        padding: 16px;
        border-radius: 24px;
    }

    .instagram-actions {
        margin-top: 26px;
    }
}

@media (max-width: 480px) {
    .instagram-section {
        padding: 68px 16px;
    }

    .instagram-widget-frame {
        min-height: 560px;
        padding: 12px;
        border-radius: 20px;
    }
}

/* =========================================================
   Gabriella Paes - Testimonials Section
   ========================================================= */

.testimonials-section {
    position: relative;
    padding: clamp(96px, 10vh, 140px) 30px;
    background:
        radial-gradient(circle at 14% 18%, rgba(237, 132, 40, 0.14), transparent 30%),
        radial-gradient(circle at 86% 82%, rgba(204, 114, 83, 0.12), transparent 34%),
        linear-gradient(180deg, var(--gp-nude) 0%, var(--gp-soft-cream) 100%);
    color: var(--gp-dark-brown);
    overflow: hidden;
}

.testimonials-section::before {
    content: "“";
    position: absolute;
    left: clamp(18px, 5vw, 82px);
    top: 18px;
    font-family: var(--gp-font-display);
    font-size: clamp(9rem, 18vw, 18rem);
    line-height: 1;
    color: rgba(204, 114, 83, 0.10);
    pointer-events: none;
}

.testimonials-container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.testimonials-section .section-header {
    margin-bottom: clamp(44px, 6vh, 70px);
}

.testimonials-section .section-title {
    color: var(--gp-dark-brown);
}

.testimonials-section .section-subtitle {
    max-width: 760px;
    color: var(--gp-taupe);
}

.testimonials-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 14px;
    border: 1px solid rgba(204, 114, 83, 0.22);
    border-radius: 999px;
    color: var(--gp-terracotta);
    background: rgba(255, 255, 255, 0.34);
    font-family: var(--gp-font-card);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.testimonial-card {
    position: relative;
    min-height: 250px;
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(204, 114, 83, 0.14);
    box-shadow: 0 20px 48px rgba(62, 51, 43, 0.10);
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(204, 114, 83, 0.28);
    box-shadow: 0 28px 64px rgba(62, 51, 43, 0.16);
}

.testimonial-card-featured {
    grid-row: span 2;
    min-height: 100%;
    background:
        radial-gradient(circle at 18% 18%, rgba(237, 132, 40, 0.16), transparent 32%),
        linear-gradient(180deg, var(--gp-dark-brown) 0%, var(--gp-extra-dark-brown) 100%);
    color: var(--gp-cream);
    border-color: rgba(255, 241, 217, 0.16);
    box-shadow: 0 28px 70px rgba(26, 15, 7, 0.28);
}

.testimonial-quote-mark {
    position: absolute;
    left: 26px;
    right: auto;
    top: 10px;
    font-family: var(--gp-font-display);
    font-size: 6rem;
    line-height: 1;
    color: rgba(204, 114, 83, 0.18);
    pointer-events: none;
}

.testimonial-card-featured .testimonial-quote-mark {
    color: rgba(255, 241, 217, 0.16);
}

.testimonial-card blockquote {
	padding-top: 28px;
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--gp-dark-brown);
    font-family: var(--gp-font-subtitle);
    font-size: clamp(1.22rem, 1.65vw, 1.5rem);
    font-weight: 500;
    line-height: 1.34;
    letter-spacing: -0.01em;
}

.testimonial-card-featured blockquote {
    color: var(--gp-cream);
    font-size: clamp(1.45rem, 2.15vw, 2rem);
    line-height: 1.25;
}

.testimonial-meta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 34px;
}

.testimonial-author {
    color: var(--gp-taupe);
    font-family: var(--gp-font-card);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
}

.testimonial-card-featured .testimonial-author {
    color: rgba(255, 241, 217, 0.72);
}

.testimonial-tag {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(204, 114, 83, 0.10);
    color: var(--gp-terracotta);
    font-family: var(--gp-font-card);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-card-featured .testimonial-tag {
    background: rgba(255, 241, 217, 0.12);
    color: var(--gp-soft-gold);
    border: 1px solid rgba(255, 241, 217, 0.16);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-card-featured {
        grid-column: span 2;
        grid-row: auto;
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 82px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card,
    .testimonial-card-featured {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
        padding: 30px 26px;
        border-radius: 24px;
    }

    .testimonial-card blockquote,
    .testimonial-card-featured blockquote {
        font-size: 1.28rem;
        line-height: 1.32;
    }

    .testimonial-meta {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 28px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 72px 16px;
    }

    .testimonial-card,
    .testimonial-card-featured {
        padding: 28px 22px;
        border-radius: 22px;
    }

	.testimonial-quote-mark {
		left: 18px;
		right: auto;
		top: 8px;
		font-size: 5rem;
}
	
	.testimonial-card blockquote {
    	padding-top: 24px;
    }
}

/* =========================================================
   Gabriella Paes - Expanded Main Menu Refinement
   ========================================================= */

/* Desktop menu with 9 items */
@media (min-width: 1161px) {
    nav {
        max-width: 1500px;
        padding: 0 22px;
        gap: 16px;
    }

    .nav-menu {
        gap: 2px;
        flex-wrap: nowrap;
    }

    .nav-menu a {
        white-space: nowrap;
        font-size: 13px;
        padding: 9px 11px;
        letter-spacing: 0.15px;
    }
}

/* Intermediate desktop/laptop widths */
@media (min-width: 1161px) and (max-width: 1320px) {
    nav {
        padding: 0 18px;
        gap: 12px;
    }

    .header-logo-img {
        height: 56px;
        max-width: 260px;
    }

    header.scrolled .header-logo-img {
        height: 52px;
    }

    .nav-menu a {
        font-size: 12.4px;
        padding: 8px 8px;
        letter-spacing: 0;
    }
}

/* Switch to hamburger before the 9-item menu gets cramped */
@media (max-width: 1160px) {
    :root {
        --gp-menu-top: 100px;
        --gp-menu-top-scrolled: 82px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--gp-menu-top);
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 30px 0;
        gap: 10px;
        background: rgba(26, 15, 7, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        border-top: 1px solid rgba(234, 217, 208, 0.08);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
        letter-spacing: 0.2px;
    }

    .menu-toggle {
        display: flex;
    }

    header.scrolled .nav-menu {
        top: var(--gp-menu-top-scrolled);
    }
}

/* Mobile-specific menu top calibration */
@media (max-width: 768px) {
    :root {
        --gp-menu-top: 86px;
        --gp-menu-top-scrolled: 74px;
    }
}

/* =========================================================
   Gabriella Paes - Process Section Brown Cards
   ========================================================= */

#services .service-card.gp-brown-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;

    background:
        radial-gradient(circle at 18% 18%, rgba(237, 132, 40, 0.16), transparent 32%),
        linear-gradient(180deg, var(--gp-dark-brown) 0%, var(--gp-extra-dark-brown) 100%);
    color: var(--gp-cream);
    border: 1px solid rgba(255, 241, 217, 0.16);
    box-shadow: 0 28px 70px rgba(26, 15, 7, 0.28);
}

#services .service-card.gp-brown-card:hover {
    transform: translateY(-8px);
    background:
        radial-gradient(circle at 18% 18%, rgba(237, 132, 40, 0.20), transparent 34%),
        linear-gradient(180deg, var(--gp-dark-brown) 0%, var(--gp-extra-dark-brown) 100%);
    border-color: rgba(255, 241, 217, 0.26);
    box-shadow: 0 32px 78px rgba(26, 15, 7, 0.34);
}

#services .service-card.gp-brown-card::before {
    background: radial-gradient(
        circle,
        rgba(255, 241, 217, 0.18) 0%,
        transparent 70%
    );
}

#services .service-card.gp-brown-card:hover::before {
    opacity: 0.08;
}

#services .service-card.gp-brown-card .service-price {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;

    background: rgba(255, 241, 217, 0.12);
    color: var(--gp-soft-gold);
    border: 1px solid rgba(255, 241, 217, 0.16);

    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
}

#services .service-card.gp-brown-card .service-title {
    color: var(--gp-cream);
    font-size: clamp(1.36rem, 1.8vw, 1.58rem);
    font-weight: 500;
    margin-bottom: 18px;
}

#services .service-card.gp-brown-card .service-description {
    color: rgba(255, 241, 217, 0.82);
    line-height: 1.65;
    margin-bottom: 0;
}

/* =========================================================
   Gabriella Paes - Shared Section Kickers
   ========================================================= */

.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;

    font-family: var(--gp-font-card);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-kicker-light {
    color: var(--gp-terracotta);
    background: rgba(255, 255, 255, 0.34);
    border: 1px solid rgba(204, 114, 83, 0.22);
}

.section-kicker-dark {
    color: var(--gp-soft-gold);
    background: rgba(255, 241, 217, 0.05);
    border: 1px solid rgba(255, 241, 217, 0.22);
}

.about-content .section-kicker {
    margin-bottom: 18px;
}

@media (max-width: 480px) {
    .section-kicker {
        font-size: 0.66rem;
        letter-spacing: 0.13em;
        padding: 6px 12px;
    }
}

/* =========================================================
   Gabriella Paes - Mobile Método Section Spacing
   ========================================================= */

@media (max-width: 768px) {
    #metodo.portfolio-section {
        overflow: visible;
        padding-top: 46px;
    }

    #metodo .section-header {
        position: relative;
        z-index: 20;
        margin-bottom: clamp(58px, 8svh, 84px);
    }

    #metodo .section-subtitle {
        position: relative;
        z-index: 20;
    }

    #metodo .coverflow-wrapper {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 480px) {
    #metodo .section-header {
        margin-bottom: 64px;
    }
}

/* =========================================================
   Gabriella Paes - Mobile Carousel Tap Reveal
   ========================================================= */

@media (max-width: 768px) {
    #metodo .coverflow-item {
        outline: none;
        -webkit-tap-highlight-color: transparent;
    }

    #metodo .portfolio-overlay {
        transform: translateY(0);
        padding: 22px;
    }

    #metodo .portfolio-description {
        display: block;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        margin-top: 0;
        transform: translateY(8px);
        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            transform 0.25s ease,
            margin-top 0.25s ease;
    }

    #metodo .coverflow-item:focus .portfolio-description,
    #metodo .coverflow-item:focus-within .portfolio-description,
    #metodo .coverflow-item.overlay-open .portfolio-description {
        max-height: 140px;
        opacity: 1;
        margin-top: 10px;
        transform: translateY(0);
    }

    #metodo .coverflow-item:focus .portfolio-overlay,
    #metodo .coverflow-item:focus-within .portfolio-overlay,
    #metodo .coverflow-item.overlay-open .portfolio-overlay {
        transform: translateY(0);
    }
}