/* Dra Daniella Brito — Rebrand */

:root {
	--ddb-navy: #0B1D3A;
	--ddb-navy-deep: #081820;
	--ddb-petrol: #0D7F8C;
	--ddb-teal: #55B7B3;
	--ddb-teal-light: #b8dde0;
	--ddb-gold: #D4B06A;
	--ddb-gold-light: #dbc9a8;
	--ddb-champagne: var(--ddb-gold);
	--ddb-off-white: #F2F4F7;
	--ddb-white: #ffffff;
	--ddb-gray: #e8ecec;
	--ddb-text: #5a6670;
	--ddb-text-dark: var(--ddb-navy);
	--ddb-whatsapp: #238b72;
	--ddb-shadow: 0 12px 40px rgba(12, 36, 48, 0.08);
	--ddb-shadow-lg: 0 24px 64px rgba(12, 36, 48, 0.12);
	--ddb-radius: 14px;
	--ddb-radius-lg: 24px;
	--ddb-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--ddb-font-body: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	--ddb-max: 1140px;
	--ddb-header-top: 20px;
	--ddb-capsule-h: 64px;
	--ddb-header-h: calc(var(--ddb-header-top) + var(--ddb-capsule-h) + 14px);
	--ddb-border: rgba(12, 36, 48, 0.08);
	--ddb-border-gold: rgba(196, 171, 130, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }

/* ── Focus states ── */
a:focus-visible,
button:focus-visible,
.ddb-btn:focus-visible,
.ddb-card:focus-visible,
.ddb-nav-toggle:focus-visible {
	outline: 2px solid var(--ddb-gold);
	outline-offset: 3px;
	border-radius: 4px;
}

body.ddb-rebrand {
	margin: 0;
	font-family: var(--ddb-font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--ddb-text);
	background: var(--ddb-off-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.ddb-rebrand h1,
body.ddb-rebrand h2,
body.ddb-rebrand h3,
body.ddb-rebrand .ddb-section__title,
body.ddb-rebrand .ddb-conditions__panel-title,
body.ddb-rebrand .ddb-conditions__item-title,
body.ddb-rebrand .ddb-credentials__item-label,
body.ddb-rebrand .ddb-credentials__subtitle,
body.ddb-rebrand .ddb-credentials__closing,
body.ddb-rebrand .ddb-footer__name {
	font-family: var(--ddb-font-display);
}

body.ddb-rebrand .ddb-section__title,
body.ddb-rebrand .ddb-conditions__panel-title,
body.ddb-rebrand .ddb-conditions__item-title,
body.ddb-rebrand .ddb-credentials__item-label,
body.ddb-rebrand .ddb-credentials__subtitle,
body.ddb-rebrand .ddb-credentials__closing {
	color: var(--ddb-navy);
}

body.ddb-rebrand .ddb-hero__title-honor,
body.ddb-rebrand .ddb-hero__title-name {
	font-family: var(--ddb-font-display);
	color: var(--ddb-off-white);
}

body.ddb-rebrand .ddb-conditions__bar-title,
body.ddb-rebrand .ddb-footer__heading,
body.ddb-rebrand .ddb-footer__name {
	font-family: var(--ddb-font-display);
	color: var(--ddb-white);
}

body.ddb-rebrand p,
body.ddb-rebrand li,
body.ddb-rebrand .ddb-section__desc,
body.ddb-rebrand .ddb-hero__desc,
body.ddb-rebrand .ddb-conditions__item-text,
body.ddb-rebrand .ddb-conditions__bar-text,
body.ddb-rebrand .ddb-credentials__lead,
body.ddb-rebrand .ddb-credentials__item-value {
	font-family: var(--ddb-font-body);
}

body.ddb-rebrand #page,
body.ddb-rebrand .site-header,
body.ddb-rebrand .site-footer { display: none !important; }

.ddb-page { overflow-x: hidden; }

.ddb-container {
	width: min(var(--ddb-max), calc(100% - 48px));
	margin-inline: auto;
}

/* ── Header — floating capsule ── */
.ddb-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: var(--ddb-header-top) 24px 0;
	background: transparent;
	border: none;
	height: auto;
	pointer-events: none;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, padding 0.4s ease;
}

.ddb-header.is-over-hero {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-16px);
}

.ddb-header.is-over-hero .ddb-header__capsule {
	pointer-events: none;
}

.ddb-header.is-visible:not(.is-over-hero) {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.ddb-header.is-over-hero .ddb-header__capsule {
	background: rgba(12, 36, 48, 0.55);
	border-color: rgba(196, 171, 130, 0.28);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.ddb-header.is-over-hero .ddb-header__name { color: var(--ddb-white); }
.ddb-header.is-over-hero .ddb-header__spec { color: var(--ddb-teal-light); }
.ddb-header.is-over-hero .ddb-nav a:not(.ddb-btn) { color: rgba(255, 255, 255, 0.88); }
.ddb-header.is-over-hero .ddb-nav a:not(.ddb-btn):hover { color: var(--ddb-white); }
.ddb-header.is-over-hero .ddb-nav-toggle span { background: var(--ddb-white); }
.ddb-header.is-over-hero .ddb-logo__img {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(196, 171, 130, 0.35);
}

.ddb-header__capsule {
	pointer-events: auto;
	position: relative;
	width: min(var(--ddb-max), 100%);
	min-height: var(--ddb-capsule-h);
	margin-inline: auto;
	padding: 8px 10px 8px 16px;
	display: flex;
	align-items: center;
	gap: 18px;
	background: rgba(247, 248, 246, 0.68);
	backdrop-filter: blur(22px);
	-webkit-backdrop-filter: blur(22px);
	border: 1px solid rgba(201, 184, 150, 0.42);
	border-radius: 999px;
	box-shadow:
		0 10px 40px rgba(14, 43, 54, 0.12),
		0 2px 10px rgba(14, 43, 54, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.55);
	transition:
		min-height 0.4s cubic-bezier(.2,.8,.2,1),
		padding 0.4s cubic-bezier(.2,.8,.2,1),
		background 0.4s ease,
		box-shadow 0.4s ease,
		border-color 0.4s ease;
}

.ddb-header.is-scrolled {
	--ddb-capsule-h: 58px;
}

.ddb-header.is-scrolled .ddb-header__capsule {
	background: rgba(247, 248, 246, 0.86);
	border-color: rgba(201, 184, 150, 0.55);
	box-shadow:
		0 14px 44px rgba(14, 43, 54, 0.14),
		0 4px 14px rgba(14, 43, 54, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.ddb-header__brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	flex-shrink: 0;
	min-width: 0;
}

.ddb-logo__img {
	height: 46px;
	width: 46px;
	padding: 5px;
	box-sizing: border-box;
	background: var(--ddb-petrol);
	border: 1px solid rgba(201, 184, 150, 0.35);
	border-radius: 50%;
	object-fit: contain;
	flex-shrink: 0;
	transition: height 0.4s cubic-bezier(.2,.8,.2,1), width 0.4s cubic-bezier(.2,.8,.2,1);
}

.ddb-header.is-scrolled .ddb-logo__img {
	height: 40px;
	width: 40px;
}

.ddb-header__identity {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
	line-height: 1.15;
}

.ddb-header__name {
	font-family: var(--ddb-font-display);
	font-size: 1.02rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--ddb-petrol);
	white-space: nowrap;
}

.ddb-header__spec {
	font-family: var(--ddb-font-body);
	font-size: 0.62rem;
	font-weight: 600;
	color: var(--ddb-teal);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	white-space: nowrap;
}

.ddb-nav {
	display: flex;
	align-items: center;
	gap: 22px;
	flex: 1;
	justify-content: center;
	min-width: 0;
}

.ddb-header__cta {
	flex-shrink: 0;
	margin-left: auto;
	border-radius: 999px;
	padding: 10px 22px;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
}

.ddb-nav a:not(.ddb-btn) {
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--ddb-text-dark);
	text-decoration: none;
	transition: color 0.2s;
	position: relative;
	padding-bottom: 4px;
	white-space: nowrap;
}

.ddb-nav a:not(.ddb-btn)::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1.5px;
	background: var(--ddb-gold);
	transition: width 0.3s ease;
}

.ddb-nav a:not(.ddb-btn):hover::after,
.ddb-nav a:not(.ddb-btn).is-active::after {
	width: 100%;
}

.ddb-nav a:not(.ddb-btn):hover { color: var(--ddb-teal); }

.ddb-nav a:not(.ddb-btn).is-active {
	color: var(--ddb-petrol);
	font-weight: 700;
}

.ddb-nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	margin-left: auto;
	flex-shrink: 0;
}

.ddb-nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ddb-navy);
	margin: 5px 0;
	transition: 0.3s;
}

/* ── Buttons ── */
.ddb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 8px;
	font-family: var(--ddb-font-body);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	letter-spacing: 0.01em;
	transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s ease, background 0.3s ease, letter-spacing 0.4s ease;
}

.ddb-btn:hover { transform: translateY(-2px); letter-spacing: 0.03em; }

.ddb-btn--primary {
	background: linear-gradient(135deg, #2a9d7a 0%, var(--ddb-whatsapp) 100%);
	color: var(--ddb-white);
	box-shadow: 0 6px 20px rgba(35, 139, 114, 0.28);
}

.ddb-btn--primary:hover {
	background: linear-gradient(135deg, #248f6e 0%, #1d7560 100%);
	box-shadow: 0 12px 32px rgba(35, 139, 114, 0.38);
}

.ddb-btn--primary:active {
	transform: translateY(0);
	box-shadow: 0 4px 12px rgba(35, 139, 114, 0.2);
}

.ddb-btn--secondary {
	background: transparent;
	color: var(--ddb-gold);
	border: 1.5px solid var(--ddb-gold);
}

.ddb-btn--secondary:hover {
	background: rgba(184, 149, 106, 0.08);
}

.ddb-btn--ghost {
	background: transparent;
	color: var(--ddb-teal-light);
	border: 1.5px solid rgba(169, 215, 217, 0.55);
}

.ddb-btn--ghost:hover {
	background: rgba(169, 215, 217, 0.1);
	border-color: var(--ddb-teal-light);
}

.ddb-btn--sm { padding: 10px 20px; font-size: 0.82rem; }

/* ── Hero ── */
.ddb-hero {
	padding-top: 24px;
	padding-bottom: 0;
	min-height: min(70vh, 640px);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	background: var(--ddb-petrol);
}

.ddb-hero__video-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.ddb-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
}

.ddb-hero__video-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(12, 36, 48, 0.94) 0%, rgba(12, 36, 48, 0.78) 38%, rgba(12, 36, 48, 0.35) 62%, rgba(12, 36, 48, 0.08) 100%),
		radial-gradient(ellipse 70% 80% at 85% 40%, rgba(42, 111, 120, 0.22) 0%, transparent 60%);
}

.ddb-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
	gap: 12px 20px;
	align-items: end;
	position: relative;
	z-index: 3;
	padding-bottom: 12px;
}

.ddb-hero__content {
	align-self: center;
	padding-bottom: 20px;
	max-width: 520px;
}

.ddb-hero__content > * {
	animation: ddb-hero-in 1s cubic-bezier(.2,.8,.2,1) backwards;
}

.ddb-hero__title { animation-delay: 0.1s; }
.ddb-hero__kicker { animation-delay: 0.22s; }
.ddb-hero__desc { animation-delay: 0.34s; }
.ddb-hero__actions { animation-delay: 0.46s; }

.ddb-hero__brand {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-bottom: 28px;
}

.ddb-hero__brand-logo {
	width: 88px;
	height: 88px;
	padding: 8px;
	box-sizing: border-box;
	background: var(--ddb-petrol);
	border: 1px solid rgba(201, 184, 150, 0.4);
	border-radius: 50%;
	flex-shrink: 0;
	filter: drop-shadow(0 8px 24px rgba(14, 43, 54, 0.45));
}

.ddb-hero__brand .ddb-hero__title {
	margin: 0;
	font-size: clamp(1.9rem, 4.2vw, 4.2rem);
	font-weight: 500;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.ddb-hero__title-honor {
	display: inline;
	font-family: var(--ddb-font-display);
	font-size: 1em;
	font-weight: 500;
	color: var(--ddb-off-white);
	margin: 0 0.2em 0 0;
	vertical-align: baseline;
}

.ddb-hero__title-name {
	display: inline;
	font-family: var(--ddb-font-display);
	color: var(--ddb-off-white);
	vertical-align: baseline;
}

.ddb-hero__kicker {
	font-family: var(--ddb-font-body);
	font-size: 0.82rem;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0.06em;
	color: var(--ddb-teal-light);
	margin: 0 0 18px;
	padding: 0;
	border: none;
}

.ddb-hero__title {
	font-family: var(--ddb-font-display);
	font-size: clamp(2rem, 3.2vw, 2.95rem);
	font-weight: 500;
	line-height: 1.08;
	color: var(--ddb-off-white);
	margin: 0 0 16px;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

.ddb-hero__subtitle {
	font-family: var(--ddb-font-body);
	font-size: clamp(0.78rem, 1.3vw, 0.88rem);
	font-weight: 600;
	color: var(--ddb-teal-light);
	margin: 0 0 24px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.ddb-hero__desc {
	font-size: 1.05rem;
	font-weight: 400;
	color: rgba(248, 249, 247, 0.82);
	max-width: 440px;
	margin: 0 0 28px;
	line-height: 1.75;
}

.ddb-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ddb-hero__visual {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	align-self: end;
	min-height: 0;
	z-index: 1;
	/* animation: ddb-hero-photo-in 1.2s cubic-bezier(.2,.8,.2,1) 0.2s backwards; */
}

.ddb-hero__photo-wrap {
	position: relative;
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.ddb-hero__photo-wrap::before {
	display: none;
}

.ddb-hero__photo {
	width: 100%;
	max-height: min(calc(70vh - 24px), 660px);
	object-fit: contain;
	object-position: center bottom;
	/* filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35)); */
	transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}

.ddb-hero:hover .ddb-hero__photo {
	/* transform: translateY(-6px); */
}

.ddb-hero__circuit {
	position: absolute;
	top: -20px;
	right: -30px;
	width: 180px;
	height: 180px;
	opacity: 0.25;
	pointer-events: none;
}

/* ── Section base ── */
.ddb-section {
	padding: 112px 0; /* Aumentado para mais espaço em branco */
	position: relative;
}

.ddb-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(320px, 50%);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(196, 171, 130, 0.35), transparent);
}

.ddb-section:first-of-type::before { display: none; }

.ddb-section--alt {
	background: var(--ddb-white);
}

.ddb-section__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 64px;
}

.ddb-section__label {
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--ddb-teal);
	margin: 0 0 12px;
}

.ddb-section__title {
	font-family: var(--ddb-font-display);
	font-size: clamp(1.85rem, 3.5vw, 2.6rem);
	font-weight: 500;
	color: var(--ddb-text-dark);
	margin: 0 0 14px;
	line-height: 1.2;
	letter-spacing: 0.01em;
}

.ddb-section__desc {
	font-size: 1rem;
	margin: 0;
	line-height: 1.7;
	color: var(--ddb-text);
}

.ddb-section--conditions {
	background: var(--ddb-off-white);
	padding: 96px 0 100px;
}

.ddb-section--conditions::before {
	display: none;
}

.ddb-section__ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: -4px auto 20px;
	width: fit-content;
}

.ddb-section__ornament::before,
.ddb-section__ornament::after {
	content: '';
	width: 42px;
	height: 1px;
	background: var(--ddb-gold);
	opacity: 0.9;
}

.ddb-section__ornament span {
	width: 7px;
	height: 7px;
	background: var(--ddb-gold);
	transform: rotate(45deg);
	flex-shrink: 0;
}

.ddb-conditions__intro {
	max-width: 680px;
	margin: 0 auto 56px;
	text-align: center;
}

.ddb-conditions__intro .ddb-section__title {
	font-size: clamp(2rem, 3.8vw, 2.85rem);
	margin-bottom: 0;
}

.ddb-conditions__intro .ddb-section__desc {
	font-size: 1rem;
	color: var(--ddb-text);
	max-width: 560px;
	margin-inline: auto;
	line-height: 1.75;
}

.ddb-conditions__panels {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	align-items: stretch;
}

.ddb-conditions__panel {
	background: var(--ddb-white);
	border: 1px solid rgba(12, 36, 48, 0.06);
	border-radius: 20px;
	padding: 36px 32px 28px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 44px rgba(12, 36, 48, 0.07);
}

.ddb-conditions__panel::before {
	display: none;
}

.ddb-conditions__panel-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 8px;
}

.ddb-conditions__panel-badge {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--ddb-navy);
	display: grid;
	place-items: center;
	box-shadow: 0 6px 20px rgba(12, 36, 48, 0.22);
}

.ddb-conditions__panel-badge svg {
	width: 26px;
	height: 26px;
	color: var(--ddb-gold);
}

.ddb-conditions__panel-title {
	font-family: var(--ddb-font-display);
	font-size: 1.08rem;
	font-weight: 600;
	color: var(--ddb-petrol);
	margin: 0;
	padding: 0;
	border: none;
	line-height: 1.35;
	flex: 1;
}

.ddb-conditions__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.ddb-conditions__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 22px 0;
	border-bottom: 1px solid rgba(12, 36, 48, 0.08);
	transition: none;
}

.ddb-conditions__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.ddb-conditions__item:first-child {
	padding-top: 16px;
}

.ddb-conditions__item:hover {
	padding-left: 0;
}

.ddb-conditions__item-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	color: var(--ddb-gold);
	margin-top: 2px;
}

.ddb-conditions__item-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.ddb-conditions__item-body {
	flex: 1;
	min-width: 0;
}

.ddb-conditions__item-title {
	font-family: var(--ddb-font-display);
	font-size: 1rem;
	font-weight: 600;
	color: var(--ddb-petrol);
	margin: 0 0 6px;
	line-height: 1.35;
}

.ddb-conditions__item-text {
	font-size: 0.86rem;
	line-height: 1.62;
	color: var(--ddb-text);
	margin: 0;
}

.ddb-conditions__bar {
	margin-top: 40px;
	background: linear-gradient(135deg, var(--ddb-navy) 0%, var(--ddb-navy-deep) 100%);
	border-radius: 20px;
	padding: 36px 40px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr auto;
	gap: 28px 32px;
	align-items: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(12, 36, 48, 0.18);
}

.ddb-conditions__bar::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 80% at 100% 100%, rgba(196, 171, 130, 0.14) 0%, transparent 60%),
		repeating-linear-gradient(
			-35deg,
			transparent,
			transparent 18px,
			rgba(196, 171, 130, 0.04) 18px,
			rgba(196, 171, 130, 0.04) 19px
		);
	pointer-events: none;
}

.ddb-conditions__bar-item {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ddb-conditions__bar-icon {
	width: 34px;
	height: 34px;
	color: var(--ddb-gold);
}

.ddb-conditions__bar-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.ddb-conditions__bar-title {
	font-family: var(--ddb-font-display);
	font-size: 1.02rem;
	font-weight: 600;
	color: var(--ddb-white);
	margin: 0;
	line-height: 1.3;
}

.ddb-conditions__bar-text {
	font-size: 0.82rem;
	line-height: 1.58;
	color: rgba(255, 255, 255, 0.72);
	margin: 0;
}

.ddb-conditions__bar-cta {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.ddb-btn--gold {
	background: var(--ddb-gold);
	color: var(--ddb-navy);
	border: none;
	font-weight: 600;
	padding: 14px 24px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.ddb-btn--gold:hover {
	background: #d4bc94;
	color: var(--ddb-navy-deep);
	transform: translateY(-1px);
}

.ddb-conditions__block + .ddb-conditions__block {
	margin-top: 64px;
	padding-top: 0;
	border-top: none;
}

.ddb-conditions__block-title {
	font-family: var(--ddb-font-display);
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: 600;
	color: var(--ddb-petrol);
	margin: 0 0 28px;
	letter-spacing: 0.01em;
	display: flex;
	align-items: center;
	gap: 14px;
}

.ddb-conditions__block-accent {
	display: block;
	width: 32px;
	height: 2px;
	background: linear-gradient(90deg, var(--ddb-champagne), var(--ddb-teal));
	flex-shrink: 0;
	border-radius: 2px;
}

.ddb-conditions__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.ddb-condition-card {
	background: var(--ddb-white);
	border-radius: var(--ddb-radius);
	padding: 28px 28px 28px 32px;
	border: 1px solid rgba(42, 111, 120, 0.08);
	box-shadow: var(--ddb-shadow);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	position: relative;
	overflow: hidden;
}

.ddb-condition-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, var(--ddb-teal), var(--ddb-champagne));
	opacity: 0.7;
	transition: opacity 0.35s ease;
}

.ddb-condition-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--ddb-shadow-lg);
	border-color: rgba(42, 111, 120, 0.16);
}

.ddb-condition-card:hover::before {
	opacity: 1;
}

.ddb-condition-card__num {
	display: block;
	font-family: var(--ddb-font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: var(--ddb-champagne);
	margin-bottom: 12px;
}

.ddb-condition-card__title {
	font-family: var(--ddb-font-display);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--ddb-petrol);
	margin: 0 0 10px;
	line-height: 1.35;
}

.ddb-condition-card__text {
	font-size: 0.875rem;
	line-height: 1.65;
	color: var(--ddb-text);
	margin: 0;
}

.ddb-section--specialties {
	background:
		radial-gradient(ellipse 90% 70% at 50% -10%, rgba(169, 215, 217, 0.14) 0%, transparent 62%),
		linear-gradient(180deg, var(--ddb-off-white) 0%, #eef4f4 100%);
}

/* ── Specialty blocks ── */
.ddb-specialties {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: stretch;
}

.ddb-specialty {
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(232, 244, 245, 0.85) 100%);
	border-radius: 22px;
	padding: 40px 36px 44px;
	border: 1px solid rgba(45, 124, 134, 0.14);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.95),
		0 18px 40px rgba(14, 43, 54, 0.07);
	position: relative;
	overflow: hidden;
	transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s ease, border-color 0.45s ease;
	backdrop-filter: blur(8px);
}

.ddb-specialty::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--ddb-teal), var(--ddb-teal-light));
	opacity: 0.9;
}

.ddb-specialty:nth-child(2)::before {
	background: linear-gradient(90deg, var(--ddb-whatsapp), #3cb896);
}

.ddb-specialty:nth-child(3)::before {
	background: linear-gradient(90deg, var(--ddb-champagne), #e8d5b0);
}

.ddb-specialty:hover {
	transform: translateY(-8px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.95),
		0 28px 56px rgba(14, 43, 54, 0.11);
	border-color: rgba(45, 124, 134, 0.2);
}

.ddb-specialty__title {
	font-family: var(--ddb-font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--ddb-petrol);
	margin: 0 0 30px;
	line-height: 1.32;
	letter-spacing: 0.005em;
	position: relative;
	z-index: 1;
	padding-top: 24px;
}

.ddb-specialty__title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, var(--ddb-champagne), rgba(201, 184, 150, 0.2));
	transition: width 0.35s ease;
}

.ddb-specialty:hover .ddb-specialty__title::before {
	width: 64px;
}

.ddb-specialty__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: relative;
	z-index: 1;
}

.ddb-specialty__list li {
	padding: 0 0 14px 0;
	position: relative;
	font-size: 0.9rem;
	font-weight: 400;
	color: var(--ddb-text);
	line-height: 1.55;
	border-bottom: 1px solid rgba(45, 124, 134, 0.08);
}

.ddb-specialty__list li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.ddb-specialty__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 14px;
	height: 1px;
	background: linear-gradient(90deg, var(--ddb-champagne), rgba(201, 184, 150, 0.2));
	transform: translateY(-50%);
	opacity: 0;
}

.ddb-specialty__list li {
	padding-left: 0;
}

/* ── Help cards ── */
.ddb-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.ddb-cards--3 {
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 100%;
	margin-inline: auto;
}

.ddb-card {
	border-radius: var(--ddb-radius-lg);
	padding: 36px 28px 32px;
	background: var(--ddb-white);
	border: 1px solid rgba(42, 111, 120, 0.1);
	box-shadow: var(--ddb-shadow);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.ddb-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--ddb-teal), var(--ddb-champagne));
	opacity: 0.85;
}

.ddb-card:nth-child(2)::after {
	background: linear-gradient(90deg, var(--ddb-champagne), var(--ddb-teal-light));
}

.ddb-card:nth-child(3)::after {
	background: linear-gradient(90deg, var(--ddb-whatsapp), var(--ddb-teal));
}

.ddb-card:hover {
	transform: translateY(-4px);
	border-color: rgba(42, 111, 120, 0.18);
	box-shadow: var(--ddb-shadow-lg);
}

.ddb-card__icon-wrap {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(42, 111, 120, 0.08);
	border: 1px solid rgba(42, 111, 120, 0.12);
	color: var(--ddb-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	flex-shrink: 0;
}

.ddb-card__icon-wrap svg {
	width: 22px;
	height: 22px;
}

.ddb-card__title {
	font-family: var(--ddb-font-display);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--ddb-petrol);
	margin: 0 0 10px;
	line-height: 1.3;
	position: relative;
	z-index: 1;
	padding-bottom: 0;
}

.ddb-card__title::after {
	display: none;
}

.ddb-card__text {
	font-size: 0.875rem;
	margin: 0;
	line-height: 1.65;
	color: var(--ddb-text);
	flex-grow: 1;
	position: relative;
	z-index: 1;
}

/* ── Credentials ── */
.ddb-section--credentials {
	background:
		radial-gradient(ellipse 60% 50% at 100% 0%, rgba(184, 221, 224, 0.2) 0%, transparent 60%),
		var(--ddb-off-white);
}

.ddb-credentials__panel {
	background: var(--ddb-white);
	border-radius: var(--ddb-radius-lg);
	padding: 48px 44px;
	border: 1px solid rgba(42, 111, 120, 0.1);
	box-shadow: var(--ddb-shadow-lg);
}

.ddb-credentials__intro {
	font-size: 1.02rem;
	line-height: 1.75;
	color: var(--ddb-text-dark);
	margin: 0 0 32px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(42, 111, 120, 0.1);
	font-family: var(--ddb-font-display);
	font-weight: 400;
}

.ddb-credentials__header {
	text-align: center;
	width: 100%;
	max-width: none;
	margin: 0 0 40px;
	padding-bottom: 36px;
	border-bottom: 1px solid rgba(196, 171, 130, 0.22);
}

.ddb-credentials__header .ddb-section__title {
	font-size: clamp(2rem, 3.8vw, 2.85rem);
	margin: 0;
	line-height: 1.15;
	text-wrap: balance;
}

.ddb-credentials__header .ddb-section__ornament {
	margin: 18px auto 22px;
}

.ddb-credentials__subtitle {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: 6px;
	font-family: var(--ddb-font-display);
	font-size: clamp(1.05rem, 2vw, 1.22rem);
	line-height: 1.45;
	color: var(--ddb-navy);
	margin: 0 0 20px;
	text-wrap: balance;
}

.ddb-credentials__subtitle span {
	display: block;
}

.ddb-credentials__lead {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--ddb-text);
	margin: 0 auto;
	max-width: 620px;
	text-wrap: pretty;
}

.ddb-credentials__items {
	list-style: none;
	padding: 0;
	margin: 0 0 36px;
}

.ddb-credentials__item {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	padding: 22px 0;
	border-bottom: 1px solid rgba(196, 171, 130, 0.22);
}

.ddb-credentials__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.ddb-credentials__item-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ddb-navy);
	color: var(--ddb-gold);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ddb-credentials__item-icon svg {
	width: 22px;
	height: 22px;
	display: block;
}

.ddb-credentials__item-body {
	flex: 1;
	min-width: 0;
}

.ddb-credentials__item-label {
	font-family: var(--ddb-font-display);
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ddb-gold);
	margin: 0 0 4px;
}

.ddb-credentials__item-value {
	font-size: 0.96rem;
	line-height: 1.6;
	color: var(--ddb-text-dark);
	margin: 0;
}

.ddb-credentials__closing {
	font-family: var(--ddb-font-display);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--ddb-navy);
	text-align: center;
	margin: 32px 0 0;
	padding-top: 28px;
	border-top: 1px solid rgba(196, 171, 130, 0.22);
}

.ddb-credentials {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
	gap: 56px;
	align-items: center;
}

.ddb-credentials.ddb-credentials--solo {
	display: block;
	width: 100%;
	max-width: 820px;
	margin-inline: auto;
}

.ddb-credentials.ddb-credentials--solo .ddb-credentials__panel {
	width: 100%;
}

.ddb-credentials--solo .ddb-credentials__content {
	gap: 0;
}

.ddb-credentials__photo {
	margin: 0;
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 24px 56px rgba(14, 43, 54, 0.1);
}

.ddb-credentials__photo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(14, 43, 54, 0.08) 100%);
	pointer-events: none;
}

.ddb-credentials__photo img {
	width: 100%;
	height: 100%;
	max-height: 620px;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.ddb-credentials__content {
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.ddb-credentials__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ddb-credentials__list li {
	padding: 18px 0 18px 28px;
	border-bottom: 1px solid rgba(45, 124, 134, 0.12);
	font-size: 0.96rem;
	line-height: 1.6;
	color: var(--ddb-text);
	position: relative;
}

.ddb-credentials__list li:last-child {
	border-bottom: none;
}

.ddb-credentials__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1.45em;
	width: 10px;
	height: 2px;
	background: linear-gradient(90deg, var(--ddb-champagne), var(--ddb-teal-light));
	transform: translateY(-50%);
}

.ddb-credentials__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 28px 36px;
	padding: 32px 0 0;
	margin-top: 8px;
	border-top: 1px solid rgba(196, 171, 130, 0.22);
	background: none;
	border-radius: 0;
	box-shadow: none;
}

.ddb-credentials__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	transition: opacity 0.3s ease;
}

.ddb-credentials__logo:hover {
	transform: none;
	border: none;
	box-shadow: none;
	opacity: 0.75;
}

.ddb-credentials__logo img {
	width: auto;
	max-width: 88px;
	max-height: 36px;
	object-fit: contain;
	object-position: center;
	filter: none;
	opacity: 0.82;
	transition: opacity 0.3s ease;
}

.ddb-credentials__logo:hover img {
	filter: none;
	transform: none;
	opacity: 1;
}

.ddb-credentials__logo:nth-child(4),
.ddb-credentials__logo:nth-child(5) {
	grid-column: auto;
}

@media (min-width: 769px) {
	.ddb-credentials__logos {
		gap: 24px 40px;
	}

	.ddb-credentials__logo img {
		max-width: 96px;
		max-height: 38px;
	}

	.ddb-credentials__logo:nth-child(1) { grid-column: auto; }
	.ddb-credentials__logo:nth-child(2) { grid-column: auto; }
	.ddb-credentials__logo:nth-child(3) { grid-column: auto; }
	.ddb-credentials__logo:nth-child(4) { grid-column: auto; }
	.ddb-credentials__logo:nth-child(5) { grid-column: auto; }
}

/* ── Consultation steps ── */
.ddb-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	counter-reset: step;
}

.ddb-step {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(169, 215, 217, 0.15);
	border-radius: var(--ddb-radius);
	padding: 32px 24px;
	position: relative;
}

.ddb-step__num {
	font-family: var(--ddb-font-display);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--ddb-gold-light);
	opacity: 0.4;
	line-height: 1;
	margin-bottom: 16px;
}

.ddb-step__title {
	font-weight: 600;
	color: var(--ddb-white);
	margin: 0 0 10px;
	font-size: 0.95rem;
}

.ddb-step__text {
	font-size: 0.85rem;
	margin: 0;
	opacity: 0.8;
	line-height: 1.6;
}

/* ── Testimonials carousel ── */
.ddb-testimonials-carousel {
	max-width: 720px;
	margin-inline: auto;
}

.ddb-carousel__viewport {
	overflow: hidden;
	border-radius: 20px;
}

.ddb-carousel__track {
	display: flex;
	transition: transform 0.55s cubic-bezier(.2,.8,.2,1);
	will-change: transform;
}

.ddb-carousel__slide {
	flex: 0 0 100%;
	min-width: 100%;
}

.ddb-testimonial {
	background: var(--ddb-off-white);
	border-radius: var(--ddb-radius-lg);
	padding: 44px 40px;
	box-shadow: none;
	border: 1px solid rgba(42, 111, 120, 0.1);
	text-align: center;
	margin: 0;
}

.ddb-testimonial__quote {
	font-family: var(--ddb-font-display);
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	font-style: italic;
	font-weight: 400;
	line-height: 1.75;
	margin: 0 0 20px;
	color: var(--ddb-petrol);
}

.ddb-testimonial__quote::before {
	content: '\201C';
	color: var(--ddb-champagne);
	font-size: 1.4em;
	line-height: 0;
	margin-right: 0.1em;
}

.ddb-testimonial__author {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	font-style: normal;
	color: var(--ddb-teal);
	letter-spacing: 0.04em;
}

.ddb-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 28px;
}

.ddb-carousel__btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(45, 124, 134, 0.2);
	background: var(--ddb-white);
	color: var(--ddb-petrol);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.ddb-carousel__btn:hover {
	background: var(--ddb-petrol);
	border-color: var(--ddb-petrol);
	color: var(--ddb-off-white);
	transform: scale(1.05);
}

.ddb-carousel__dots {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ddb-carousel__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: rgba(45, 124, 134, 0.25);
	cursor: pointer;
	transition: transform 0.3s ease, background 0.3s ease;
}

.ddb-carousel__dot.is-active {
	background: var(--ddb-teal);
	transform: scale(1.25);
}

.ddb-carousel__dot:hover {
	background: var(--ddb-champagne);
}

/* ── CTA Final ── */
.ddb-cta-final {
	padding: 120px 0;
	background: var(--ddb-sand-light);
	text-align: center;
	border-top: 1px solid rgba(201, 184, 150, 0.25);
}

.ddb-cta-final__title {
	font-family: var(--ddb-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--ddb-navy-deep);
	margin: 0 0 16px;
	line-height: 1.1;
}

.ddb-cta-final__desc {
	color: var(--ddb-text-light);
	margin: 0 auto 40px;
	font-size: 1.1rem;
	max-width: 600px;
	line-height: 1.6;
}

/* ── Footer ── */
.ddb-footer {
	position: relative;
	background: var(--ddb-navy-deep);
	color: rgba(255,255,255,0.75);
	padding: 80px 0 40px;
	overflow: hidden;
}

.ddb-footer__watermark {
	position: absolute;
	top: -10%;
	right: -10%;
	width: 60%;
	height: auto;
	opacity: 0.04;
	pointer-events: none;
	user-select: none;
}

.ddb-footer .ddb-container {
	position: relative;
	z-index: 2;
}

.ddb-footer__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 0.85fr;
	gap: 64px;
	margin-bottom: 64px;
}

.ddb-footer__brand-link {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	text-decoration: none;
}

.ddb-footer__logo {
	width: 72px;
	height: 72px;
	padding: 7px;
	box-sizing: border-box;
	background: var(--ddb-petrol);
	border: 1px solid rgba(201, 184, 150, 0.35);
	border-radius: 50%;
	display: block;
	object-fit: contain;
	flex-shrink: 0;
}

.ddb-footer__identity {
	display: flex;
	flex-direction: column;
	gap: 4px;
	line-height: 1.2;
}

.ddb-footer__name {
	font-family: var(--ddb-font-display);
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--ddb-white);
}

.ddb-footer__spec {
	font-size: 0.68rem;
	font-weight: 600;
	color: var(--ddb-teal-light);
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.ddb-footer__tagline {
	font-size: 0.88rem;
	line-height: 1.6;
	margin: 0 0 20px;
	color: rgba(255,255,255,0.7);
}

.ddb-footer__social {
	display: flex;
	gap: 12px;
}

.ddb-footer__social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ddb-gold);
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.ddb-footer__social a svg {
	width: 18px;
	height: 18px;
	display: block;
}

.ddb-footer__social a:hover {
	background: rgba(196, 171, 130, 0.22);
	color: var(--ddb-white);
}

.ddb-footer__heading {
	font-family: var(--ddb-font-display);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--ddb-white);
	margin: 0 0 20px;
}

.ddb-footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ddb-footer__list li {
	margin-bottom: 12px;
	font-size: 0.88rem;
	line-height: 1.5;
}

.ddb-footer__list a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ddb-gold-light);
	text-decoration: none;
}

.ddb-footer__list a svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: var(--ddb-gold);
}

.ddb-footer__list a:hover { text-decoration: underline; }

.ddb-footer__grid {
	display: grid;
	grid-template-columns: 1.15fr 1.1fr 0.75fr;
	gap: 40px;
	margin-bottom: 64px;
	align-items: start;
}

.ddb-footer__locations {
	display: flex;
	flex-direction: column;
}

.ddb-footer__location {
	margin: 0;
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ddb-footer__location:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ddb-footer__location-head {
	display: block;
	margin-bottom: 6px;
}

.ddb-footer__location strong {
	display: block;
	color: var(--ddb-white);
	font-size: 0.95rem;
	font-family: var(--ddb-font-display);
	margin: 0;
}

.ddb-footer__location-address {
	margin: 0 0 10px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.82rem;
	line-height: 1.5;
}

.ddb-footer__map-link {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--ddb-gold-light);
	text-decoration: none;
	text-transform: uppercase;
}

.ddb-footer__map-link:hover {
	color: var(--ddb-white);
	text-decoration: underline;
}

.ddb-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 0.78rem;
	opacity: 0.6;
}

/* ── Floating WhatsApp ── */
.ddb-float-wa {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--ddb-whatsapp);
	color: var(--ddb-white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(26, 139, 110, 0.45);
	text-decoration: none;
	transition: transform 0.3s cubic-bezier(.2,.8,.2,1), opacity 0.3s ease;
	animation: ddb-wa-pulse 3s ease-in-out infinite;
}

.ddb-float-wa:hover { transform: scale(1.1); animation-play-state: paused; }
.ddb-float-wa.is-hidden { opacity: 0; transform: scale(0.7) translateY(16px); pointer-events: none; }
.ddb-float-wa svg { width: 28px; height: 28px; fill: currentColor; }

/* ── Scroll reveal ── */
.ddb-reveal {
	opacity: 0;
	transform: translateY(36px);
	transition:
		opacity 0.9s cubic-bezier(.2,.8,.2,1),
		transform 0.9s cubic-bezier(.2,.8,.2,1);
	transition-delay: var(--reveal-delay, 0ms);
}

.ddb-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ── Keyframes ── */
@keyframes ddb-hero-in {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ddb-hero-photo-in {
	from {
		opacity: 0;
		transform: translateX(48px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes ddb-hero-photo-float {
	0%, 100% { translate: 0 0; }
	50% { translate: 0 -18px; }
}

@keyframes ddb-wa-pulse {
	0%, 100% { box-shadow: 0 4px 20px rgba(26, 139, 110, 0.45); }
	50% { box-shadow: 0 4px 20px rgba(26, 139, 110, 0.45), 0 0 0 12px rgba(26, 139, 110, 0.12); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.ddb-conditions__panels { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
	.ddb-conditions__bar {
		grid-template-columns: 1fr 1fr;
		padding: 32px 28px;
	}
	.ddb-conditions__bar-cta {
		grid-column: 1 / -1;
		justify-content: center;
	}
	.ddb-conditions__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
	.ddb-cards--3 { grid-template-columns: 1fr; max-width: 560px; }
	.ddb-specialties { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
	.ddb-footer__grid { grid-template-columns: 1fr 1fr; }
	.ddb-footer__locations-col { grid-column: 1 / -1; }
	.ddb-cards { grid-template-columns: repeat(2, 1fr); }
	.ddb-steps { grid-template-columns: repeat(2, 1fr); }
	.ddb-credentials:not(.ddb-credentials--solo) {
		grid-template-columns: 1fr;
		gap: 36px;
		max-width: 560px;
		margin-inline: auto;
	}

	.ddb-credentials.ddb-credentials--solo {
		max-width: min(760px, 100%);
	}
	.ddb-credentials__photo img { max-height: 480px; }
	.ddb-credentials__logos { gap: 20px 28px; justify-content: center; }
	.ddb-credentials__logo img { max-height: 32px; max-width: 76px; }
}

@media (max-width: 1100px) {
	.ddb-nav { gap: 14px; }
	.ddb-nav a:not(.ddb-btn) { font-size: 0.76rem; }
	.ddb-header__spec { display: none; }
	.ddb-header__name { font-size: 0.92rem; }
}

@media (max-width: 768px) {
	.ddb-header {
		padding: 12px 16px 0;
		--ddb-header-top: 12px;
		--ddb-capsule-h: 58px;
	}

	.ddb-header__capsule {
		border-radius: 22px;
		padding: 8px 10px 8px 12px;
		gap: 8px;
		flex-wrap: nowrap;
	}

	.ddb-header__brand { flex: 1; min-width: 0; }
	.ddb-header__spec { display: none; }
	.ddb-header__name { font-size: 0.82rem; }
	.ddb-logo__img { height: 38px; width: 38px; }

	.ddb-nav { display: none; flex: none; }
	.ddb-nav.is-open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		right: 0;
		background: rgba(247, 248, 246, 0.94);
		backdrop-filter: blur(22px);
		-webkit-backdrop-filter: blur(22px);
		border: 1px solid rgba(201, 184, 150, 0.42);
		border-radius: 20px;
		padding: 20px;
		gap: 14px;
		box-shadow: 0 16px 40px rgba(14, 43, 54, 0.14);
		align-items: stretch;
		z-index: 10;
	}

	.ddb-nav a:not(.ddb-btn) {
		padding-bottom: 0;
		text-align: center;
		font-size: 0.9rem;
	}

	.ddb-nav a:not(.ddb-btn)::after { display: none; }

	.ddb-nav-toggle {
		display: block;
		margin-left: 0;
		order: 3;
	}

	.ddb-header__cta {
		margin-left: 0;
		order: 2;
		padding: 8px 14px;
		font-size: 0.72rem;
	}
	.ddb-hero { min-height: auto; padding-bottom: 0; padding-top: 28px; }
	.ddb-hero__video-overlay {
		background:
			linear-gradient(180deg, rgba(8, 24, 32, 0.94) 0%, rgba(12, 36, 48, 0.82) 45%, rgba(12, 36, 48, 0.55) 100%);
	}
	.ddb-hero__grid {
		grid-template-columns: 1fr;
		text-align: center;
		padding-bottom: 32px;
		gap: 20px;
	}
	.ddb-hero__content {
		order: 1;
		padding-bottom: 0;
		margin-inline: auto;
		max-width: 100%;
	}
	.ddb-hero__desc { margin-inline: auto; max-width: 34ch; }
	.ddb-hero__kicker { font-size: 0.78rem; line-height: 1.5; }
	.ddb-hero__actions {
		justify-content: center;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		max-width: 320px;
		margin-inline: auto;
		gap: 10px;
	}
	.ddb-hero__actions .ddb-btn { width: 100%; padding: 12px 18px; font-size: 0.84rem; gap: 6px; }
	.ddb-hero__actions .ddb-btn svg { width: 16px; height: 16px; }
	.ddb-hero__visual {
		order: 2;
		justify-content: center;
		margin-top: 4px;
	}
	.ddb-hero__photo-wrap { width: min(340px, 88vw); margin-inline: auto; transform: none !important; }
	.ddb-hero__photo { max-height: min(60vh, 460px); object-position: center bottom; }
	.ddb-hero__video { object-position: center 30%; }
	.ddb-hero__content > * { animation: none; }
	.ddb-hero__visual { animation: none; }
	.ddb-hero__title {
		font-size: clamp(1.85rem, 7.5vw, 2.5rem);
		white-space: normal;
	}
	.ddb-container { width: min(var(--ddb-max), calc(100% - 32px)); }
	.ddb-section { padding: 72px 0; }
	.ddb-section--conditions,
	.ddb-section--credentials { padding: 72px 0; }
	.ddb-section__title { font-size: clamp(1.65rem, 6vw, 2.2rem); }
	.ddb-conditions__intro { margin-bottom: 32px; }
	.ddb-conditions__intro .ddb-section__title { font-size: clamp(1.7rem, 6.5vw, 2.25rem); }
	.ddb-conditions__panel { padding: 24px 20px 20px; }
	.ddb-conditions__panel-head { gap: 12px; }
	.ddb-conditions__panel-badge { width: 46px; height: 46px; }
	.ddb-conditions__item { gap: 12px; padding: 18px 0; }
	.ddb-credentials__header {
		margin-bottom: 28px;
		padding-bottom: 24px;
		padding-inline: 0;
	}
	.ddb-credentials__header .ddb-section__title { font-size: clamp(1.7rem, 6.5vw, 2.25rem); letter-spacing: 0.02em; }
	.ddb-credentials__header .ddb-section__ornament { margin: 14px auto 18px; }
	.ddb-credentials__subtitle { font-size: 1rem; margin-bottom: 16px; }
	.ddb-credentials__lead { max-width: none; }
	.ddb-credentials__panel { padding: 28px 20px; }
	.ddb-credentials__item-icon { width: 40px; height: 40px; }
	.ddb-credentials__logos {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}
	.ddb-credentials__logo:nth-child(1),
	.ddb-credentials__logo:nth-child(2),
	.ddb-credentials__logo:nth-child(3),
	.ddb-credentials__logo:nth-child(4),
	.ddb-credentials__logo:nth-child(5) { grid-column: auto; }
	.ddb-credentials__logo:nth-child(3),
	.ddb-credentials__logo:nth-child(5) { grid-column: 1 / -1; }
	.ddb-conditions__bar {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 28px 22px;
		margin-top: 32px;
	}
	.ddb-conditions__bar-cta { justify-content: stretch; }
	.ddb-conditions__bar-cta .ddb-btn { width: 100%; justify-content: center; }
	.ddb-cards { grid-template-columns: 1fr; }
	.ddb-cards--3 { grid-template-columns: 1fr; }
	.ddb-steps { grid-template-columns: 1fr; }
	.ddb-footer__brand-link { flex-direction: column; align-items: flex-start; gap: 12px; }
	.ddb-footer { padding: 48px 0 28px; }
	.ddb-footer__grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
	.ddb-footer__locations { grid-template-columns: 1fr; }
	.ddb-testimonial { padding: 28px 20px; }
	.ddb-section__header { margin-bottom: 40px; }
}

@media (prefers-reduced-motion: reduce) {
	.ddb-hero__video { display: none; }
	.ddb-reveal { opacity: 1; transform: none; transition: none; }
	.ddb-hero__content > *,
	.ddb-hero__visual,
	.ddb-float-wa { animation: none; }
}

