/* ==========================================================================
   Desentupidora Aqui e Agora — variáveis e reset
   ========================================================================== */
:root {
	--orange: #ff6e15;
	--orange-dark: #e05c0a;
	--black: #161616;
	--dark-gray: #2a2a2a;
	--gray: #6b7280;
	--light-gray: #f4f5f7;
	--white: #ffffff;
	--whatsapp: #25d366;
	--whatsapp-dark: #1da851;
	--radius: 12px;
	--shadow: 0 10px 30px rgba(0,0,0,.08);
	--font: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font);
	color: var(--dark-gray);
	line-height: 1.6;
	background: var(--white);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.25; }
p { margin: 0 0 1em; }

.container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

.section { padding: 80px 0; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: 2rem; color: var(--black); }
.section-head p { color: var(--gray); }
.eyebrow {
	display: inline-block;
	color: var(--orange);
	font-weight: 700;
	text-transform: uppercase;
	font-size: .8rem;
	letter-spacing: .06em;
	margin-bottom: .5em;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: 10px;
	font-weight: 700;
	font-size: .95rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn .icon { width: 18px; height: 18px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-outline { background: transparent; border-color: var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: .85rem; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-lg .icon { width: 20px; height: 20px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 12px;
	padding-bottom: 12px;
}
.logo img { height: 52px; width: auto; max-width: 140px; object-fit: contain; display: block; }
.main-nav {
	display: flex;
	gap: 28px;
	flex: 1;
	justify-content: center;
}
.main-nav a {
	font-weight: 600;
	color: var(--dark-gray);
	font-size: .95rem;
}
.main-nav a:hover { color: var(--orange); }
.nav-plantao {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	font-size: .85rem;
	color: var(--orange-dark);
	white-space: nowrap;
}
.nav-plantao svg { width: 16px; height: 16px; stroke: var(--orange); }
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
}
.nav-toggle span {
	display: block;
	height: 3px;
	background: var(--black);
	border-radius: 2px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	background-color: var(--black);
	background-image:
		repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0px, rgba(255,255,255,.035) 1px, transparent 1px, transparent 26px),
		radial-gradient(ellipse at 50% 0%, rgba(255,110,21,.18) 0%, rgba(22,22,22,0) 60%);
	padding: 60px 0;
	min-height: 92vh;
	display: flex;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.hero-inner {
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.badge {
	display: inline-flex;
	align-items: center;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.15);
	color: #fff;
	padding: 10px 22px;
	border-radius: 999px;
	margin-bottom: 32px;
}
.badge-full { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 1rem; }
.badge-stacked { display: none; flex-direction: column; align-items: center; gap: 4px; }
.badge-line-main { display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 1.15rem; }
.badge-line-sub { font-weight: 500; font-size: .88rem; color: rgba(255,255,255,.7); }
.badge-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--orange);
	display: inline-block;
	position: relative;
	animation: badge-pulse 1.8s infinite;
}
.badge-dot::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--orange);
	animation: badge-pulse-ring 1.8s infinite;
}
@keyframes badge-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: .55; }
}
@keyframes badge-pulse-ring {
	0% { box-shadow: 0 0 0 0 rgba(255,110,21,.55); }
	70% { box-shadow: 0 0 0 8px rgba(255,110,21,0); }
	100% { box-shadow: 0 0 0 0 rgba(255,110,21,0); }
}
.hero h1 { font-size: 4rem; color: #fff; font-weight: 800; line-height: 1.15; }
.hero h1 .highlight { color: var(--orange); }
.hero-sub { color: rgba(255,255,255,.75); font-size: 1.3rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 40px 0 40px; }
.hero-usp {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 0;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 999px;
	padding: 8px 10px;
}
.hero-usp li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 1rem;
	color: rgba(255,255,255,.85);
	padding: 10px 24px;
	position: relative;
}
.hero-usp li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 16px;
	background: rgba(255,255,255,.15);
}
.usp-check {
	color: var(--orange);
	font-weight: 800;
}

/* ==========================================================================
   Sobre nós / Atendemos onde você estiver
   ========================================================================== */
.about { background: #fff; }
.about-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.about-card {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	min-height: 320px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	box-shadow: var(--shadow);
}
.about-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.85) 100%);
}
.about-card-content {
	position: relative;
	padding: 24px;
	color: #fff;
}
.about-card-content h3 { color: #fff; font-size: 1.3rem; }
.about-card-content p { color: rgba(255,255,255,.85); font-size: .9rem; }

/* ==========================================================================
   Serviços
   ========================================================================== */
.services { background: var(--light-gray); }
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.service-card {
	background: #fff;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
}
.service-card img { height: 190px; object-fit: cover; }
.service-card-body { padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1; text-align: center; }
.service-card-body h3 { font-size: 1.1rem; color: var(--black); }
.service-card-body p { color: var(--gray); font-size: .9rem; flex: 1; }
.service-card-body .btn { align-self: center; }

/* ==========================================================================
   Transparência / Como funciona
   ========================================================================== */
.transparency { background: #fff; }
.transparency-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 72px;
}
.transparency-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.transparency-content h2 { font-size: 1.8rem; color: var(--black); }
.transparency-content p { color: var(--gray); }

.steps-title { text-align: center; font-size: 1.5rem; color: var(--black); margin-bottom: 32px; }
.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.step {
	background: var(--light-gray);
	border-radius: var(--radius);
	padding: 28px 22px;
	text-align: center;
}
.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--orange);
	color: #fff;
	font-weight: 800;
	margin-bottom: 14px;
}
.step h4 { font-size: 1rem; color: var(--black); }
.step p { font-size: .88rem; color: var(--gray); margin: 0; }

/* ==========================================================================
   Vantagens
   ========================================================================== */
.advantages { background: var(--black); color: #fff; }
.advantages .section-head h2 { color: #fff; }
.advantages .section-head p { color: rgba(255,255,255,.7); }
.advantages-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.advantage-card {
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: var(--radius);
	padding: 28px 22px;
	text-align: center;
}
.advantage-icon { font-size: 2rem; margin-bottom: 12px; }
.advantage-card h3 { font-size: 1.05rem; color: #fff; }
.advantage-card p { font-size: .88rem; color: rgba(255,255,255,.65); margin: 0; }

/* ==========================================================================
   Depoimentos
   ========================================================================== */
.testimonials { background: var(--light-gray); }
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.testimonial-card {
	background: #fff;
	border-radius: var(--radius);
	padding: 26px;
	box-shadow: var(--shadow);
}
.stars { color: #ffc107; letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-card p { color: var(--dark-gray); font-size: .92rem; font-style: italic; }
.testimonial-card strong { color: var(--black); font-size: .9rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: #fff; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
	border: 1px solid #e5e7eb;
	border-radius: var(--radius);
	overflow: hidden;
}
.faq-question {
	width: 100%;
	text-align: left;
	background: var(--light-gray);
	border: none;
	padding: 18px 22px;
	font-weight: 700;
	font-size: .98rem;
	color: var(--black);
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.faq-toggle { color: var(--orange); font-size: 1.3rem; font-weight: 800; }
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease;
	padding: 0 22px;
}
.faq-answer p { color: var(--gray); padding-top: 14px; margin: 0; }
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 14px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ==========================================================================
   Contato
   ========================================================================== */
.contact { background: var(--light-gray); }
.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.contact-card {
	background: #fff;
	border-radius: var(--radius);
	padding: 30px 24px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: transform .15s ease;
}
a.contact-card:hover { transform: translateY(-4px); }
.contact-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 14px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact-icon svg { width: 26px; height: 26px; fill: #fff; }
.contact-icon.urgency svg { stroke: #fff; fill: none; }
.contact-icon.whatsapp { background: var(--whatsapp); }
.contact-icon.phone { background: var(--black); }
.contact-icon.urgency { background: var(--orange); }
.contact-card h3 { font-size: 1.05rem; color: var(--black); margin-bottom: 4px; }
.contact-card p { color: var(--gray); font-size: .88rem; margin: 0; }

/* ==========================================================================
   CTA final
   ========================================================================== */
.cta-final {
	background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
	color: #fff;
	text-align: center;
	padding: 64px 0;
}
.cta-final h2 { font-size: 1.7rem; max-width: 760px; margin: 0 auto .4em; }
.cta-final p { color: rgba(255,255,255,.9); margin-bottom: 24px; }
.cta-final .btn-whatsapp { background: var(--black); }
.cta-final .btn-whatsapp:hover { background: #000; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: var(--black);
	color: rgba(255,255,255,.75);
	border-top: 5px solid;
	border-image: linear-gradient(90deg, var(--orange), #ffb84d, var(--orange)) 1;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 40px;
	padding-top: 64px;
	padding-bottom: 40px;
}
.footer-logo-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.footer-logo-badge img { height: 34px; width: auto; max-width: 130px; object-fit: contain; display: block; }
.footer-brand p { font-size: .9rem; max-width: 320px; }
.footer-plantao {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--orange);
	font-weight: 700;
	font-size: .95rem;
}
.footer-plantao svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: 1.1rem; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 16px; }
.footer-col a { font-size: .92rem; }
.footer-col a:hover { color: var(--orange); }

.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .92rem; }
.footer-ico { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.footer-ico.whatsapp { fill: var(--whatsapp); }
.footer-ico.pin { stroke: var(--orange); }

.footer-info-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .92rem;
}
.footer-info-list .chevron { color: var(--orange); font-weight: 800; font-size: 1.1rem; }
.footer-pay-title { margin: 24px 0 12px; font-size: .95rem !important; }
.footer-pay-icons {
	display: flex;
	gap: 10px;
}
.pay-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 42px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 8px;
	color: rgba(255,255,255,.8);
}
.pay-icon svg { width: 22px; height: 22px; }
.pay-icon-pix {
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .03em;
	color: #32bcad;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.1);
	padding-top: 20px;
	padding-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	font-size: .85rem;
}
.footer-bottom p { margin: 0; }
.footer-credit { display: flex; align-items: center; gap: 8px; }
.footer-credit-logo { height: 20px; width: auto; object-fit: contain; display: block; }

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 60px;
	height: 60px;
	background: var(--whatsapp);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(0,0,0,.25);
	z-index: 60;
	animation: pulse 2.4s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
	70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
	100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
	.about-grid, .steps-grid, .advantages-grid, .testimonials-grid, .contact-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.transparency-grid { grid-template-columns: 1fr; }
	.transparency-media { order: -1; }
	.transparency-content { text-align: center; }
	.transparency-content .btn { justify-content: center; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.hero h1 { font-size: 2.3rem; }
}

@media (max-width: 720px) {
	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 8px 24px 16px;
		box-shadow: 0 12px 20px rgba(0,0,0,.08);
		display: none;
	}
	.main-nav.open { display: flex; }
	.main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid #eee; }
	.nav-plantao { padding: 12px 0; width: 100%; border-bottom: 1px solid #eee; }
	.nav-toggle { display: flex; }
	.header-actions { display: none; }

	.hero { padding: 64px 0 48px; }
	.badge { flex-direction: column; border-radius: var(--radius); text-align: center; padding: 14px 18px; }
	.badge-full { display: none; }
	.badge-stacked { display: flex; }
	.badge-line-main { font-size: 1rem; }
	.badge-line-sub { font-size: .8rem; }
	.hero h1 { font-size: 1.8rem; }
	.hero-sub { font-size: .95rem; }
	.hero-usp { flex-direction: column; align-items: stretch; border-radius: var(--radius); width: 100%; }
	.hero-usp li { justify-content: center; padding: 10px 12px; }
	.hero-usp li:not(:last-child)::after { display: none; }
	.hero-usp li:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.12); }

	.about-grid, .services-grid, .steps-grid, .advantages-grid, .testimonials-grid, .contact-grid {
		grid-template-columns: 1fr;
	}
	.container { padding: 0 28px; }
	.footer-grid { grid-template-columns: 1fr; gap: 44px; padding-top: 56px; padding-bottom: 40px; text-align: left; }
	.footer-col, .footer-brand { text-align: left; }
	.footer-logo-badge, .footer-plantao { margin-left: 0; margin-right: auto; }
	.footer-contact-list li, .footer-info-list li { text-align: left; }
	.footer-pay-icons { justify-content: flex-start; }
	.footer-bottom { flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 14px; padding-top: 24px; padding-bottom: 88px; }
	.footer-credit { justify-content: center; }
	.section { padding: 56px 0; }
	.section-head h2 { font-size: 1.6rem; }
	.cta-final h2 { font-size: 1.35rem; }
}

@media (max-width: 420px) {
	.hero h1 { font-size: 1.5rem; }
	.btn-lg { padding: 14px 26px; font-size: 1rem; width: 100%; justify-content: center; }
	.hero-ctas { width: 100%; }
	.hero-ctas .btn { width: 100%; justify-content: center; }
}
