/* ==========================================================================
   DNA Total — variáveis e base
   ========================================================================== */

:root {
	--dnat-navy: #093063;
	--dnat-navy-soft: #0d3d7d;
	--dnat-teal: #119c9f;
	--dnat-teal-dark: #0c7f81;
	--dnat-blue-light: #3cacde;
	--dnat-gray-light: #f2f2f2;
	--dnat-white: #ffffff;
	--dnat-text: #33383d;
	--dnat-text-muted: #6b7280;
	--dnat-radius: 16px;
	--dnat-radius-sm: 10px;
	--dnat-shadow: 0 20px 40px -12px rgba(9, 48, 99, 0.18);
	--dnat-container: 1200px;
	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;
}

body {
	font-family: var(--font-body);
	color: var(--dnat-text);
	line-height: 1.6;
	background: var(--dnat-white);
}

h1,
h2,
h3 {
	font-family: var(--font-heading);
	color: var(--dnat-navy);
	line-height: 1.2;
	margin: 0 0 16px;
}

.dnat-container {
	max-width: var(--dnat-container);
	margin: 0 auto;
	padding: 0 24px;
}

.dnat-section-title {
	text-align: center;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	margin-bottom: 48px;
}

.dnat-eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dnat-blue-light);
	margin-bottom: 12px;
}

.dnat-badge {
	display: inline-block;
	background: var(--dnat-gray-light);
	color: var(--dnat-navy);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 12px;
}

/* Buttons
   ========================================================================== */

.dnat-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
	border: none;
}

.dnat-btn--teal {
	background: var(--dnat-teal);
	color: var(--dnat-white);
}

.dnat-btn--teal:hover {
	background: var(--dnat-teal-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 24px -8px rgba(17, 156, 159, 0.45);
}

.dnat-btn--block {
	display: flex;
	width: 100%;
}

/* Header
   ========================================================================== */

.dnat-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--dnat-white);
	box-shadow: 0 1px 0 rgba(9, 48, 99, 0.08);
}

.dnat-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	padding-top: 16px;
	padding-bottom: 16px;
}

.dnat-header__logo img {
	height: 36px;
	width: auto;
}

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

.dnat-nav__list {
	display: flex;
	gap: 28px;
}

.dnat-nav__list a {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--dnat-navy);
}

.dnat-nav__list a:hover {
	color: var(--dnat-teal);
}

.dnat-header__cta {
	padding: 10px 24px;
	font-size: 0.9rem;
}

.dnat-nav__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	padding: 0;
	margin-left: 8px;
}

.dnat-nav__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--dnat-navy);
	border-radius: 2px;
}

/* Hero
   ========================================================================== */

.dnat-hero {
	padding: 64px 0;
	background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
	overflow: hidden;
}

.dnat-hero__inner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 48px;
	align-items: center;
}

.dnat-hero__title {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0 18px;
	margin-bottom: 12px;
}

.dnat-hero__title-lines {
	display: flex;
	flex-direction: column;
	font-size: clamp(1.5rem, 2.3vw, 1.9rem);
	line-height: 1.08;
	padding-top: 0.2em;
}

.dnat-hero__title-highlight {
	color: var(--dnat-teal);
	font-size: clamp(4rem, 8.5vw, 6.5rem);
	line-height: 0.85;
	font-weight: 800;
}

.dnat-hero__subtitle {
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--dnat-teal);
	font-size: 1.1rem;
	margin: 0 0 16px;
}

.dnat-hero__description {
	color: var(--dnat-text-muted);
	max-width: 46ch;
	margin-bottom: 32px;
}

.dnat-hero__trust {
	display: flex;
	gap: 16px;
	margin-bottom: 32px;
}

.dnat-hero__trust li {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1 1 0;
	min-width: 0;
}

.dnat-hero__trust img {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.dnat-hero__trust strong {
	display: block;
	font-size: 0.9rem;
	color: var(--dnat-navy);
}

.dnat-hero__trust span {
	display: block;
	font-size: 0.78rem;
	color: var(--dnat-text-muted);
}

.dnat-hero__media img {
	/* A foto já tem a própria sombra de estúdio e fundo claro embutidos;
	   adicionar radius/shadow aqui desenharia um "cartão" ao redor da
	   margem branca da foto em vez de contornar só a caixa. */
	display: block;
}

/* Video + Quem Somos
   ========================================================================== */

.dnat-video {
	padding: 72px 0 0;
}

.dnat-video__inner {
	background: var(--dnat-navy);
	border-radius: var(--dnat-radius);
	padding: 56px;
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 40px;
	align-items: center;
	color: var(--dnat-white);
}

.dnat-video__copy h2 {
	color: var(--dnat-white);
	font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.dnat-video__frame {
	position: relative;
	border-radius: var(--dnat-radius-sm);
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--dnat-blue-light);
}

.dnat-video__frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.dnat-video__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dnat-video__play {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	position: relative;
}

.dnat-video__play::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 54%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 12px 0 12px 20px;
	border-color: transparent transparent transparent var(--dnat-navy);
}

.dnat-about {
	max-width: 760px;
	margin: 56px auto 0;
	background: var(--dnat-gray-light);
	border-radius: var(--dnat-radius);
	padding: 40px 48px;
	text-align: center;
}

.dnat-about p {
	color: var(--dnat-text-muted);
	margin: 0;
}

/* Por que escolher
   ========================================================================== */

.dnat-why {
	padding: 88px 0 64px;
}

.dnat-why__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.dnat-why__item {
	text-align: center;
}

.dnat-why__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--dnat-gray-light);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.dnat-why__item strong {
	display: block;
	color: var(--dnat-navy);
	margin-bottom: 6px;
}

.dnat-why__item p {
	font-size: 0.85rem;
	color: var(--dnat-text-muted);
	margin: 0;
}

/* Depoimentos
   ========================================================================== */

.dnat-testimonials {
	padding: 64px 0;
	background: var(--dnat-gray-light);
}

.dnat-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.dnat-testimonial-card {
	background: var(--dnat-white);
	border-radius: var(--dnat-radius);
	padding: 32px;
	box-shadow: 0 8px 24px -12px rgba(9, 48, 99, 0.15);
}

.dnat-testimonial-card__quote {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	color: var(--dnat-teal);
	line-height: 1;
}

.dnat-testimonial-card p {
	color: var(--dnat-text-muted);
	min-height: 96px;
}

.dnat-testimonial-card strong {
	display: block;
	color: var(--dnat-navy);
	margin-bottom: 8px;
}

.dnat-stars {
	color: #d9dde1;
	letter-spacing: 2px;
}

.dnat-star.is-filled {
	color: #f5b400;
}

/* FAQ
   ========================================================================== */

.dnat-faq {
	padding: 64px 0;
}

.dnat-accordion {
	max-width: 900px;
	margin: 0 auto;
	border: 1px solid #e5e7eb;
	border-radius: var(--dnat-radius);
	overflow: hidden;
}

.dnat-accordion__item + .dnat-accordion__item {
	border-top: 1px solid #e5e7eb;
}

.dnat-accordion__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	background: var(--dnat-white);
	border: none;
	text-align: left;
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--dnat-navy);
	font-size: 1rem;
}

.dnat-accordion__chevron {
	flex-shrink: 0;
	transition: transform 0.2s ease;
	color: var(--dnat-teal);
}

.dnat-accordion__item.is-open .dnat-accordion__chevron {
	transform: rotate(180deg);
}

.dnat-accordion__panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease;
	background: var(--dnat-white);
}

.dnat-accordion__panel p {
	margin: 0;
	padding: 0 24px 20px;
	color: var(--dnat-text-muted);
}

/* Produto / Preço
   ========================================================================== */

.dnat-product {
	padding: 64px 0 96px;
}

.dnat-product__card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: var(--dnat-radius);
	overflow: hidden;
	box-shadow: var(--dnat-shadow);
}

.dnat-product__photo {
	background: var(--dnat-gray-light);
	min-height: 100%;
}

.dnat-product__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dnat-product__info {
	background: var(--dnat-white);
	padding: 48px;
}

.dnat-product__desc {
	color: var(--dnat-text-muted);
	margin-bottom: 24px;
}

.dnat-product__specs {
	display: flex;
	gap: 14px;
	margin-bottom: 28px;
}

.dnat-product__specs li {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1 1 0;
	min-width: 0;
}

.dnat-product__specs strong {
	display: block;
	font-size: 0.8rem;
	color: var(--dnat-navy);
}

.dnat-product__specs span {
	display: block;
	font-size: 0.75rem;
	color: var(--dnat-text-muted);
}

.dnat-product__price {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 2.4rem;
	color: var(--dnat-navy);
}

.dnat-product__installment {
	color: var(--dnat-text-muted);
	margin: 0 0 24px;
}

.dnat-product__note {
	text-align: center;
	font-size: 0.8rem;
	color: var(--dnat-text-muted);
	margin: 12px 0 0;
}

/* Footer
   ========================================================================== */

.dnat-footer {
	background: var(--dnat-navy);
	padding: 64px 0 48px;
	text-align: center;
}

.dnat-footer__logo {
	height: 32px;
	width: auto;
	margin: 0 auto 28px;
	display: block;
}

.dnat-footer__text {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.85rem;
	margin: 0;
}

.dnat-footer__credit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 32px;
	font-size: 0.7rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.dnat-footer__credit img {
	height: 14px;
	width: auto;
}

.dnat-footer__credit:hover {
	color: rgba(255, 255, 255, 0.85);
}

/* Responsive
   ========================================================================== */

@media (max-width: 960px) {
	.dnat-hero__inner {
		grid-template-columns: 1fr;
	}

	.dnat-hero__media {
		order: -1;
	}

	.dnat-video__inner {
		grid-template-columns: 1fr;
		padding: 32px;
	}

	.dnat-why__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.dnat-testimonials__grid {
		grid-template-columns: 1fr;
	}

	.dnat-product__card {
		grid-template-columns: 1fr;
	}

	.dnat-product__photo {
		min-height: 260px;
	}
}

@media (max-width: 782px) {
	.dnat-nav {
		position: fixed;
		top: 68px;
		left: 0;
		right: 0;
		background: var(--dnat-white);
		box-shadow: 0 12px 24px -12px rgba(9, 48, 99, 0.2);
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	}

	.dnat-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.dnat-nav__list {
		flex-direction: column;
		padding: 20px 24px;
		gap: 16px;
	}

	.dnat-header__cta {
		display: none;
	}

	.dnat-nav__toggle {
		display: flex;
		margin-left: auto;
	}

	.dnat-why__grid {
		grid-template-columns: 1fr;
	}

	.dnat-about {
		padding: 32px 24px;
	}

	.dnat-hero__trust {
		flex-direction: column;
	}

	.dnat-product__specs {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	.dnat-hero__trust li {
		flex: none;
		flex-direction: column;
		text-align: center;
	}

	.dnat-hero__content {
		text-align: center;
	}

	.dnat-hero__title {
		justify-content: center;
	}

	.dnat-hero__title-lines {
		align-items: center;
	}

	.dnat-hero__description {
		margin-left: auto;
		margin-right: auto;
	}

	.dnat-hero__trust {
		align-items: center;
	}

	.dnat-video__copy {
		text-align: center;
	}

	.dnat-product__info {
		text-align: center;
	}

	.dnat-product__specs li {
		flex: none;
		flex-direction: column;
		text-align: center;
	}
}
