body {
	background-color: var(--color-branco);
	font-size: 16px;
}
.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: #d5195f;
	padding: 0.8rem 0;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.site-header__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.site-header__logo img {
	width: 120px;
}
.site-header__cta {
	display: flex;
	gap: 0.9rem;
	align-items: center;
}
.site-header__cta-inner {
	display: flex;
	gap: 0.9rem;
	align-items: center;
}
.chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 2rem;
	border-radius: 999px;
	border: 2px solid #ffd31b;
	color: #ffd31b;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-size: 0.95rem;
	cursor: default;
	text-decoration: none;
}
.chip--phone .icon svg path {
	stroke: #ffd31b;
}
.chip--phone-secondary {
	border: 2px solid #666;
	color: #666;
	padding: 0.7rem 2.2rem;
	cursor: default;
}
.chip--phone-secondary .icon svg path {
	stroke: #666;
}
.chip--whats {
	background: #ffd31b;
	border: none;
	color: #666;
	text-decoration: none;
	cursor: pointer;
	transition: var(--transition);
}
.chip--whats:hover {
	background: #f5d200;
}
.chip--whats .icon svg path {
	fill: #666;
}
.btn--chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1.4rem;
	border-radius: 999px;
	border: 1.5px solid #ffd31b;
	color: #ffd31b;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: var(--transition);
}
.btn--chip:hover {
	background: rgba(255, 229, 27, 0.15);
}
.btn--chip .icon svg path {
	stroke: #ffd31b;
}
.btn--chip-whats {
	background: #ffd31b;
	border-color: #ffd31b;
	color: #5c2f00;
}
.btn--chip-whats .icon svg path {
	stroke: #5c2f00;
}
.icon {
	display: inline-flex;
	width: 1.6rem;
	height: 1.6rem;
	align-items: center;
	justify-content: center;
}
.icon svg {
	width: 100%;
	height: 100%;
}
.icon--swap {
	width: 1.9rem;
	height: 1.9rem;
}
.sr-only {
	position: absolute;
	left: -9999px;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.section {
	padding: 5rem 0;
}
.section--light {
	background: var(--color-cinza-1);
}
.section--dark {
	background: var(--color-bordo-escuro);
	color: #fff;
}

.section__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 3rem;
}
.section__header h2 {
	font-size: 2.4rem;
	line-height: 1.2;
	color: #4b4b51;
}
.eyebrow {
	font-size: 1rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-rosa-vero);
	font-weight: 600;
	margin-bottom: 0.75rem;
}
.hero {
	background: var(--color-amarelo);
	color: var(--color-rosa);
	padding: 4rem 0 5rem;
	position: relative;
	overflow: hidden;
}
.hero__body {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 3rem;
	align-items: center;
	position: relative;
	z-index: 1;
}
.hero__content h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 3.5rem;
	line-height: 1.1;
	color: var(--color-rosa-vero);
}
.hero__content h1 span {
	color: var(--color-rosa-vero);
}
.hero__subtitle {
	font-size: 1.2rem;
	max-width: 520px;
	margin: 1.5rem 0 2.5rem;
	color: var(--color-grafite);
}
.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.hero__cta-primary {
	background: #c10355;
	color: #fff;
	border-radius: 999px;
	padding: 1.1rem 2.4rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}
.hero__cta-primary:hover {
	transform: translateY(-2px);
}
.hero__cta-secondary {
	border: 2px solid #c1394f;
	color: #c1394f;
	border-radius: 999px;
	padding: 1rem 2rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: transparent;
}
.hero__cta-secondary .icon svg path {
	stroke: #c1394f;
}
.hero__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero__figure {
	width: 520px;
	max-width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
	animation: heroFloat 6s ease-in-out infinite;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 1.8rem;
	border-radius: 999px;
	font-weight: 600;
	border: none;
	text-decoration: none;
	transition: var(--transition);
	cursor: pointer;
}
.btn--primary {
	background: var(--color-amarelo);
	color: var(--color-bordo-escuro);
}
.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(255, 229, 27, 0.35);
}
.btn--secondary {
	background: var(--color-laranja);
	color: #fff;
}
.btn--outline {
	border: 1px solid rgba(255, 255, 255, 0.6);
	padding: 0.7rem 1.4rem;
	border-radius: 999px;
}
.btn--ghost {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
}
.benefits {
	background: #ecefed;
	padding: 5rem 0;
}
.benefits__header {
	text-align: center;
	margin-bottom: 3.2rem;
}
.benefits__tag {
	font-size: 0.95rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-weight: 600;
	color: #d5195f;
	margin-bottom: 1rem;
}
.benefits__title {
	font-size: 2.4rem;
	font-weight: 600;
	color: #555555;
	margin-bottom: 0.8rem;
}
.benefits__subtitle {
	font-size: 24px;
	font-weight: 400;
	color: #6c6c6c;
}
.benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(280px, 1fr));
	gap: 1.7rem;
	max-width: 1150px;
	margin: 0 auto;
}
.benefit-card {
	background: #fff;
	border-radius: 34px;
	padding: 1.5rem 2rem;
	border: 1px solid #f4f4f1;
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
	align-items: flex-start;
}
.benefit-card img {
	width: 58px;
	height: 58px;
}
.benefit-card__text h3 {
	font-size: 30px;
	font-weight: 400;
	color: #555;
	margin-bottom: 0.9rem;
}
.benefit-card__text p {
	color: #6f6f6f;
	font-size: 18px;
	line-height: 1.55;
	font-weight: 400;
}

.plan-card__price {
	font-size: 2rem;
	display: inline-flex;
	align-items: baseline;
	gap: 0.35rem;
}
.plan-card__price-suffix {
	font-size: 1.5rem;
	font-weight: 400;
	margin-left: 0.25rem;
}
.plan-card__price-suffix--light {
	color: #9d9d9d;
}
.plan-card__price-old {
	display: inline-block;
	font-size: 0.95rem;
	color: #a0a0a0;
	text-decoration: line-through;
}
.plan-card__badge {
	position: absolute;
	top: 1.2rem;
	left: 1.5rem;
	background: rgba(255, 255, 255, 0.15);
	padding: 0.4rem 1rem;
	border-radius: 999px;
	font-size: 0.85rem;
}
.plan-card__badge--highlight {
	background: var(--color-amarelo);
	color: var(--color-bordo-escuro);
}
.plans {
	background: #bf0045;
	padding: 5rem 0;
}
.plans__header {
	text-align: center;
	margin-bottom: 3rem;
}
.plans__tag {
	font-size: 0.9rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	font-weight: 600;
	color: #ffd31b;
	margin-bottom: 1rem;
}
.plans__title {
	font-size: 2.4rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
}
.plans__subtitle {
	font-size: 20px;
	color: #ffe2e9;
}
.plans__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.8rem;
	align-items: stretch;
}
.plan-card {
	scroll-snap-align: start;
}
.plan-card {
	display: flex;
	padding: 2rem 1.5rem;
	flex-direction: column;
	align-items: flex-start;
	background: #d63066;
	color: #fff;
	border-radius: 32px;
	height: 100%;
}
.plan-card h3 {
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 0.3rem;
}
.plan-card p {
	color: #ffe2eb;
	margin-bottom: 1.1rem;
}
.plan-card ul {
	list-style: none;
	margin: 1.5rem 0;
	padding: 0;
}
.plan-card li {
	margin-bottom: 0.5rem;
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}
.plan-card li::before {
	content: '✔';
	margin-right: 0.35rem;
	color: #ffe51b;
	font-size: 0.85rem;
}
.plan-card__price {
	font-size: 2rem;
	color: #fff;
}
.plan-card__price-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.2rem;
	margin-bottom: 1rem;
}
.plan-card__price-meta {
	font-size: 1rem;
	text-transform: lowercase;
	color: rgba(255, 255, 255, 0.85);
}
.plan-card__price-meta--light {
	color: #9d9d9d;
}
.plan-card__price-old {
	display: block;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: line-through;
	margin-bottom: 0.35rem;
}
.plan-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	border-radius: 999px;
	padding: 0.4rem 1.3rem;
	position: absolute;
	top: 1rem;
	left: 50%;
	transform: translateX(-50%);
}
.plan-card--featured {
	background: #fff;
	color: #8b0038;
	padding: 3rem 2.6rem 3rem;
}
.plan-card--featured p {
	color: #7c2145;
}
.plan-card--featured .plan-card__price {
	color: #8b0038;
	font-size: 2rem;
}
.plan-card--featured .plan-card__price-meta {
	color: #8b0038;
}
.plan-card--featured .plan-card__badge {
	background: #ffd31b;
	color: #8b0038;
	position: static;
	width: 100%;
	transform: none;
	border-radius: 30px;
	margin-bottom: 0.8rem;
}
.plan-card--featured .plan-card__price-old {
	color: #a5a5a5;
	margin-bottom: 0.15rem;
}
.plan-card__prices {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	margin-bottom: 1rem;
}
.plan-card__divider {
	display: block;
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, 0.5);
	margin: 0 0 1rem;
}
.plan-card--featured li {
	align-items: center;
}
.plan-card__divider--light {
	background: #eceeec;
}
.plan-card--featured li::before {
	display: none;
	content: none;
}

.plan-card--featured li img {
	width: 16px;
	height: 16px;
	align-items: center;
}
.plan-card__btn {
	display: inline-flex;
	width: 100%;
	justify-content: center;
	padding: 1rem 1.2rem;
	background: #bf0045;
	color: #fff;
	font-weight: 600;
	border-radius: 50px;
	transition: transform 0.25s ease, background 0.25s ease;
	text-decoration: none;
	margin-top: 0.5rem;
}
.plan-card__btn:hover {
	transform: scale(1.03);
	background: #a20039;
}

.plan-card--residencial {
	background: #d63066;
	box-shadow: none;
	padding: 2.5rem 2rem;
	height: auto;
}
.plan-card--residencial .plan-card__badge {
	position: static;
	width: 100%;
	transform: none;
	background: #bf0045;
	border-radius: 30px;
	margin-bottom: 1.2rem;
}
.plan-card--residencial .plan-card__divider {
	display: block;
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, 0.5);
	margin: 0 0 1rem;
}
.plan-card--residencial li {
	gap: 0.6rem;
	color: #fff;
	margin-bottom: 0.6rem;
	align-items: center;
}
.plan-card--residencial li::before {
	content: '';
	margin: 0;
}
.plan-card--residencial li img {
	width: 16px;
	height: 16px;
}
.plan-card--residencial .plan-card__btn {
	background: #bf0045;
}
.plan-card--residencial .plan-card__btn:hover {
	background: #900032;
}

.plan-card--empresas {
	background: #d63066;
	box-shadow: none;
	padding: 2.5rem 2rem;
	height: auto;
}
.plan-card--empresas .plan-card__badge {
	position: static;
	width: 100%;
	transform: none;
	background: #bf0045;
	border-radius: 30px;
	margin-bottom: 1.2rem;
}
.plan-card--empresas li {
	gap: 0.6rem;
	color: #fff;
	margin-bottom: 0.6rem;
	align-items: center;
}
.plan-card--empresas li::before {
	content: '';
	margin: 0;
}
.plan-card--empresas li img {
	width: 16px;
	height: 16px;
}
.plan-card--empresas .plan-card__btn {
	background: #bf0045;
}
.plan-card--empresas .plan-card__btn:hover {
	background: #900032;
}
.wifi {
	background: linear-gradient(0deg, #eceeec 0%, #ffe0be 100%);
	padding: 4.5rem 0;
}
.wifi__card {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2.5rem;
	align-items: center;
}
.wifi__badge {
	font-size: 0.95rem;
	font-weight: 600;
	color: #bf0045;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
.wifi__title {
	font-size: 2.4rem;
	font-weight: 600;
	color: #4b4b51;
	margin-bottom: 1rem;
}
.wifi__text {
	font-size: 1.2rem;
	color: #6c6d75;
	margin-bottom: 1.5rem;
}
.wifi__benefits {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.wifi__benefits li {
	font-size: 1.15rem;
	color: #5a5a60;
	list-style: none;
	display: flex;
	gap: 0.7rem;
	align-items: center;
}
.wifi__benefits li img {
	width: 18px;
	height: 18px;
}
.wifi__media {
	display: flex;
	justify-content: center;
}
.wifi__media img {
	width: 100%;
	height: auto;
	display: block;
}

.cashback {
	background: #890038;
	padding: 4rem 0;
}
.cashback__card {
	display: flex;
	align-items: center;
	gap: 3rem;
}
.cashback__media {
	flex: 1;
	text-align: center;
}
.cashback__media img {
	max-width: 100%;
	height: auto;
}
.cashback__content {
	flex: 1;
	color: #fff;
}
.cashback__content h2 {
	font-size: 2.4rem;
	font-weight: 600;
	color: #f3953f;
	margin-bottom: 1rem;
}
.cashback__content p {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}
.cashback__btn {
	display: inline-flex;
	background: #f3953f;
	color: #890038;
	font-weight: 600;
	padding: 1rem 2.5rem;
	border-radius: 40px;
	text-decoration: none;
	transition: transform 0.25s ease, filter 0.25s ease;
}
.cashback__btn:hover {
	transform: translateY(-2px);
	filter: brightness(0.95);
}

.ready-cta {
	background: #890038;
	padding: 4rem 0;
	color: #fff;
}
.ready-cta__box {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}
.ready-cta__box h2 {
	font-size: 2.4rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}
.ready-cta__box p {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 2rem;
}
.ready-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}
.ready-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.95rem 2.4rem;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	text-decoration: none;
	transition: transform 0.25s ease, filter 0.25s ease;
}
.ready-cta__btn--primary {
	background: #d63066;
	color: #fff;
}
.ready-cta__btn--primary:hover {
	filter: brightness(1.05);
	transform: translateY(-2px);
}
.ready-cta__btn--whats {
	background: #ffd31b;
	color: #8b0038;
}
.ready-cta__btn--whats:hover {
	filter: brightness(0.95);
	transform: translateY(-2px);
}
.ready-cta__btn--outline {
	border: 2px solid #ffd31b;
	color: #ffd31b;
}
.ready-cta__btn--outline:hover {
	transform: translateY(-2px);
}

.metrics {
	background: #ecefed;
	padding: 5rem 0;
}
.metrics__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 3rem;
}
.metrics__eyebrow {
	font-size: 1rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #d5195f;
	font-weight: 600;
	margin-bottom: 0.8rem;
}
.metrics__title {
	font-size: 2.4rem;
	font-weight: 600;
	color: #4b4b51;
}
.metrics__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.8rem;
	align-items: stretch;
}
.metrics__card {
	background: #fff;
	border-radius: 32px;
	padding: 2.5rem 2rem;
	text-align: center;
	border: 1px solid #f4f4f1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
.metrics__icon {
	width: 6rem;
	height: 6rem;
	object-fit: contain;
}
.metrics__value {
	font-size: 3rem;
	font-weight: 400;
	color: #4b4b51;
}
.metrics__description {
	font-size: 1.7rem;
	color: #6b6c6f;
	line-height: 1.35;
}
.metrics__seal {
	margin-top: auto;
	max-width: 160px;
	width: 100%;
	height: auto;
}

.differentials {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}
.differential {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	align-items: center;
	padding: 2rem;
	border-radius: var(--radius);
	background: var(--color-cinza-1);
}
.differential:nth-child(even) {
	background: var(--color-branco);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.differential__media img {
	border-radius: var(--radius);
}
.testimonials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}
.testimonial {
	background: #fff;
	border-radius: var(--radius);
	padding: 2rem;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.testimonial__stars {
	color: #ffd31b;
	font-size: 1.2rem;
	margin: 0.5rem 0;
}
.faq {
	background: #f6f8fb;
}
.accordion {
	background: #fff;
	border: 1px solid #eceef6;
	border-radius: 32px;
	padding: 2.5rem;
	max-width: 920px;
	margin: 0 auto;
	box-shadow: 0 25px 60px rgba(21, 27, 68, 0.08);
}
.accordion__item {
	border: none;
	margin-bottom: 1rem;
}
.accordion__item:last-child {
	margin-bottom: 0;
}
.accordion__trigger {
	width: 100%;
	text-align: left;
	background: #fff;
	border: 1px solid #e0e5f0;
	border-radius: 20px;
	padding: 1.3rem 1.6rem;
	font-size: 1.05rem;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #4b4e5c;
	transition: var(--transition);
}
.accordion__item.is-open .accordion__trigger {
	background: #f6f8fb;
	border-color: #a7b1ff;
	color: #3a3f6d;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.accordion__icon {
	width: 18px;
	height: 18px;
	position: relative;
	flex-shrink: 0;
}
.accordion__icon::before,
.accordion__icon::after {
	content: '';
	position: absolute;
	background: #a0a6c5;
	transition: var(--transition);
}
.accordion__icon::before {
	width: 18px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.accordion__icon::after {
	height: 18px;
	width: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.accordion__item.is-open .accordion__icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) scaleY(0);
}
.accordion__panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.3s ease;
	padding: 0 1.6rem;
	background: #f6f8fb;
	border: 1px solid transparent;
	border-top: none;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	color: #4e4e58;
}
.accordion__item.is-open .accordion__panel {
	max-height: 1000px;
	padding: 1rem 1.6rem 1.2rem;
	border-color: #a7b1ff;
}
.cta-final {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	align-items: center;
	background: rgba(0, 0, 0, 0.2);
	padding: 2.5rem;
	border-radius: 32px;
}
#lead-form {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
}
#lead-form input {
	border: none;
	border-radius: var(--radius);
	padding: 1rem;
	font-size: 1rem;
}
#lead-form input.is-invalid {
	border: 2px solid var(--color-amarelo);
}
#lead-form button {
	grid-column: span 2;
}
.form__feedback {
	font-size: 0.95rem;
	margin-top: 0.5rem;
	grid-column: span 2;
}
.footer {
	background: #0f1420;
	color: #eef1f7;
	padding: 3rem 0 1.5rem;
}
.footer__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}
.footer__brand {
	max-width: 420px;
}
.footer__legal {
	margin-top: 0.8rem;
	color: rgba(238, 241, 247, 0.8);
	line-height: 1.4;
}
.footer__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.footer__phone {
	color: #fff;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
}
.footer__whats {
	background: #ffd31b;
	color: #8b0038;
	padding: 0.75rem 1.8rem;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
}
.footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 1rem;
	color: rgba(238, 241, 247, 0.8);
	font-size: 0.95rem;
}
.footer__bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.footer__links {
	display: flex;
	gap: 1.5rem;
}
.footer__links a {
	color: rgba(238, 241, 247, 0.8);
	text-decoration: none;
}
.footer__links a:hover {
	color: #fff;
}
.whatsapp {
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	background: #25d366;
	color: #fff;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 15px 30px rgba(37, 211, 102, 0.35);
	animation: pulse 3s infinite;
	z-index: 1200;
}

@media (min-width: 769px) {
	.footer__bottom-content {
		flex-direction: row;
		text-align: left;
	}
	.footer__links {
		order: -1;
	}
	.footer__links a {
		text-align: left;
	}
	.footer__bottom-content small {
		margin-left: auto;
	}
}
.whatsapp__icon svg {
	width: 26px;
	height: 26px;
	display: block;
}
@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.03);
	}
	100% {
		transform: scale(1);
	}
}
.scroll-top {
	position: fixed;
	right: 2.5rem;
	bottom: 7rem;
	background: var(--color-rosa-vero);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition);
	z-index: 1200;
}
.scroll-top img {
	width: 18px;
	height: 18px;
}
.scroll-top.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.lazy {
	opacity: 0;
	transition: opacity 0.6s ease;
}
.lazy.loaded {
	opacity: 1;
}
.honeypot {
	position: absolute;
	left: -9999px;
	opacity: 0;
}
.hero__figure {
	will-change: transform;
}
@keyframes heroFloat {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
	100% {
		transform: translateY(0);
	}
}
body.modal-open {
	overflow: hidden;
}
@media (max-width: 1024px) {
	.hero__menu {
		position: absolute;
		top: 100%;
		right: 0;
		background: rgba(255, 255, 255, 0.95);
		flex-direction: column;
		padding: 1.5rem;
		border-radius: var(--radius);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-20px);
		transition: var(--transition);
	}
	.hero__menu.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}
	.hero__toggle {
		display: flex;
	}
	.hero__nav {
		margin-bottom: 2rem;
	}
}
@media (max-width: 768px) {
	.site-header__content {
		flex-direction: column;
		align-items: flex-start;
	}
	.site-header__cta {
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	.hero {
		padding: 3rem 0;
	}
	.hero__body {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.hero__content h1 {
		font-size: 2.4rem;
	}
	.hero__subtitle {
		margin-left: auto;
		margin-right: auto;
	}
	.hero__actions {
		justify-content: center;
	}
	.hero__media {
		margin-top: 1.5rem;
		order: 2;
	}
	.hero__figure {
		max-width: 90vw;
		margin: 0 auto;
	}
	.btn {
		width: 100%;
		justify-content: center;
	}
	.plans__grid,
	.benefits__grid {
		grid-template-columns: 1fr;
	}
	.plans__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 1rem;
		padding: 0 1rem 1rem;
	}
	.plans__grid::-webkit-scrollbar {
		display: none;
	}
	.plan-card {
		min-width: calc(100% - 2rem);
		flex: 0 0 calc(100% - 2rem);
	}
	.benefits__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 1rem;
		padding: 0 1rem 1rem;
	}
	.benefits__grid::-webkit-scrollbar {
		display: none;
	}
	.benefit-card {
		min-width: calc(100% - 2rem);
		flex: 0 0 calc(100% - 2rem);
		scroll-snap-align: start;
	}
	.benefits__subtitle {
		font-size: 1.2rem;
	}
	.wifi__card {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.wifi__media {
		order: 2;
		margin-top: 1.5rem;
	}
	.wifi__media img {
		max-width: 85vw;
		margin: 0 auto;
	}
	.cashback__card {
		flex-direction: column;
		text-align: center;
	}
	.cashback__media {
		order: 2;
	}
	.cashback__media img {
		max-width: 85vw;
		margin: 0 auto 1rem;
	}
	.metrics__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 1rem;
		padding: 0 1rem 1rem;
	}
	.metrics__grid::-webkit-scrollbar {
		display: none;
	}
	.metrics__card {
		min-width: calc(100% - 2rem);
		flex: 0 0 calc(100% - 2rem);
		scroll-snap-align: start;
		padding: 2rem 1.5rem;
	}
	.metrics__card:last-child {
		margin-right: 1rem;
	}
	.metrics__title {
		font-size: 2.4rem;
	}
	.metrics__description {
		font-size: 1.4rem;
	}
	.ready-cta__box h2 {
		font-size: 2.4rem;
	}
	.ready-cta__box p {
		font-size: 1.05rem;
	}
	.ready-cta__actions,
	.footer__bottom-content {
		flex-direction: column;
		text-align: center;
	}
	.footer__content {
		flex-direction: column;
		align-items: flex-start;
	}
	.footer__actions {
		width: 100%;
	}
	.cta-final {
		padding: 2rem;
	}
}
@media (max-width: 600px) {
	#lead-form button,
	#lead-form .form__feedback {
		grid-column: span 1;
	}
	.site-header__cta {
		width: 100%;
	}
	.site-header__cta-inner {
		width: 100%;
		display: flex;
		gap: 0.75rem;
		justify-content: space-between;
	}
	.site-header__cta-inner .chip {
		flex: 1 1 50%;
		font-size: 0.8rem;
		padding: 0.55rem 0.8rem;
		gap: 0.4rem;
	}
	.site-header__cta-inner .chip .icon {
		width: 0.85rem;
		height: 0.85rem;
	}
	.site-header__city,
	.site-header__change {
		display: none;
	}
	.footer__actions {
		width: 100%;
	}
	.chip,
	.footer__actions .chip,
	.plan-card__btn,
	.btn--chip,
	.footer__whats,
	.footer__phone {
		width: 100%;
		justify-content: center;
		text-align: center;
	}
	.site-header__cta-inner .chip {
		width: auto;
	}
	.hero__actions {
		width: 100%;
	}
	.whatsapp {
		right: 1rem;
		bottom: 1rem;
	}
	.scroll-top {
		right: 1.3rem;
		bottom: 5.5rem;
	}
}
