/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
	background-color: #eef2f7;
	background-image: none;
	color: #123467;
	overflow-x: hidden;
}

body[data-theme="clean"] {
	background-color: #eef2f7;
	color: #123467;
}

body[data-theme="premium"] {
	background-color: #091629;
	color: #dbe8ff;
}

/* ===== NAVBAR ===== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: linear-gradient(90deg, rgba(13, 44, 94, 0.92) 0%, rgba(18, 52, 103, 0.9) 55%, rgba(27, 63, 119, 0.9) 100%);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	color: #d6deeb;
	transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.navbar.scrolled {
	background: linear-gradient(90deg, rgba(11, 37, 80, 0.97) 0%, rgba(18, 52, 103, 0.96) 55%, rgba(24, 57, 110, 0.96) 100%);
	border-bottom-color: rgba(255, 255, 255, 0.24);
	box-shadow: 0 10px 28px rgba(10, 28, 58, 0.34);
}

.nav-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.nav-logo-img {
	height: 46px;
	width: auto;
	border-radius: 7px;
	object-fit: contain;
	box-shadow: 0 4px 16px rgba(9, 24, 48, 0.25);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-logo:hover .nav-logo-img {
	transform: translateY(-1px) scale(1.01);
	box-shadow: 0 8px 20px rgba(9, 24, 48, 0.33);
}

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

.nav-link {
	text-decoration: none;
	color: #e8edf7;
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	padding: 9px 16px;
	border-radius: 999px;
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
	transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
	letter-spacing: 0.35px;
}

.nav-link:hover,
.nav-link.active {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.22);
	transform: translateY(-1px);
}

.theme-toggle {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.14);
	color: #f1f5fc;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.theme-toggle:hover {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.42);
	transform: translateY(-1px);
}

.theme-toggle-icon {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* hamburger — hidden on desktop */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 34px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 2px 0;
	flex-shrink: 0;
	position: relative;
	z-index: 1200;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background: #ffffff;
	border-radius: 3px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
	transform: translateY(10.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
	transform: translateY(-10.5px) rotate(-45deg);
}

/* ===== SECTIONS ===== */
.section {
	min-height: 100vh;
	padding: 100px 20px 60px;
	display: flex;
	align-items: center;
}

.section-container {
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
}

/* ===== HOME ===== */
.section-home {
	position: relative;
	overflow: hidden;
	background: radial-gradient(circle at 20% 20%, rgba(78, 122, 191, 0.18) 0%, rgba(78, 122, 191, 0) 45%), linear-gradient(135deg, #f4f7fb 0%, #dfe7f2 100%);
}

.section-home::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(18, 52, 103, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 52, 103, 0.05) 1px, transparent 1px);
	background-size: 32px 32px;
	pointer-events: none;
}

.home-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 32px;
	align-items: stretch;
}

.home-content {
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.home-badge {
	display: inline-block;
	background: linear-gradient(90deg, #244a82 0%, #123467 100%);
	color: #fff;
	font-size: 0.76rem;
	font-weight: 700;
	padding: 6px 16px;
	border-radius: 999px;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	margin-bottom: 22px;
	box-shadow: 0 6px 16px rgba(18, 52, 103, 0.2);
}

.home-title {
	font-family: 'Poppins', sans-serif;
	font-size: 3.1rem;
	font-weight: 800;
	color: #123467;
	line-height: 1.08;
	margin-bottom: 18px;
	letter-spacing: -1.1px;
}

.home-title strong {
	display: block;
	color: #244a82;
}

.home-subtitle {
	font-size: 1.06rem;
	color: #4e6690;
	margin-bottom: 30px;
	max-width: 560px;
	line-height: 1.75;
}

.home-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 18px;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
}

.home-btn-primary {
	background: linear-gradient(90deg, #244a82 0%, #123467 100%);
	color: #fff;
	box-shadow: 0 10px 22px rgba(18, 52, 103, 0.25);
}

.home-btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(18, 52, 103, 0.32);
}

.home-btn-outline {
	border: 1.5px solid #244a82;
	color: #244a82;
	background: rgba(255, 255, 255, 0.7);
}

.home-btn-outline:hover {
	background: rgba(36, 74, 130, 0.12);
}

.home-metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	max-width: 560px;
}

.home-metric-item {
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid #d6e0ef;
	border-radius: 10px;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.home-metric-value {
	font-size: 0.97rem;
	font-weight: 700;
	color: #123467;
	line-height: 1.35;
}

.home-metric-label {
	font-size: 0.82rem;
	color: #4e6690;
	line-height: 1.55;
}

.home-panel {
	background: linear-gradient(160deg, #ffffff 0%, #f2f6fb 100%);
	border-radius: 14px;
	padding: 22px;
	box-shadow: 0 18px 38px rgba(18, 52, 103, 0.16);
	border: 1px solid #d8e2f0;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.home-panel-logo {
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin-bottom: 16px;
	box-shadow: 0 8px 18px rgba(18, 52, 103, 0.15);
}

.home-highlights {
	display: grid;
	gap: 12px;
}

.home-highlight-item {
	border: 1px solid #d4deec;
	border-radius: 10px;
	padding: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: #ffffff;
	transition: transform 0.2s, box-shadow 0.2s;
}

.home-highlight-item strong {
	display: block;
	color: #123467;
	font-size: 0.95rem;
	line-height: 1.45;
}

.home-highlight-icon {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #ebf2fb 0%, #dbe7f6 100%);
	border: 1px solid #c8d8ec;
	flex-shrink: 0;
}

.home-highlight-icon svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: #244a82;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-highlight-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(18, 52, 103, 0.14);
}

.home-highlight-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #5a7198;
}

.contact-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	padding: 18px 20px;
	box-shadow: 0 4px 16px rgba(18, 52, 103, 0.12);
	text-decoration: none;
	color: #123467;
	transition: transform 0.2s, box-shadow 0.2s;
	width: 100%;
}

.contact-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(18, 52, 103, 0.18);
}

.whatsapp-card:hover {
	border-left: 4px solid #2bbf64;
}

.phone-card {
	border-left: 4px solid #123467;
}

.email-card:hover {
	border-left: 4px solid #244a82;
}

.contact-icon {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.email-icon-svg {
	font-size: 2rem;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-info {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.contact-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #4b6794;
	margin-bottom: 2px;
}

.contact-number {
	font-size: 1rem;
	font-weight: bold;
	color: #123467;
}

/* ===== PRODUTOS ===== */
.section-produtos {
	position: relative;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(232, 239, 249, 0.72) 100%);
}

.section-produtos .section-container {
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid #d8e2f0;
	border-radius: 18px;
	padding: 34px;
	box-shadow: 0 16px 36px rgba(18, 52, 103, 0.1);
}

.section-title {
	font-family: 'Poppins', sans-serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: #123467;
	margin-bottom: 12px;
	text-align: center;
	letter-spacing: -0.45px;
	line-height: 1.2;
}

.section-subtitle {
	font-size: 1.04rem;
	color: #2f4f7f;
	text-align: center;
	margin-bottom: 48px;
	line-height: 1.75;
}

.produtos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin-bottom: 36px;
}

.produto-card {
	background: linear-gradient(170deg, #ffffff 0%, #f4f8fd 100%);
	border-radius: 14px;
	padding: 30px 24px;
	text-align: center;
	box-shadow: 0 8px 22px rgba(18, 52, 103, 0.1);
	border: 1px solid #d9e2f0;
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.produto-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 30px rgba(18, 52, 103, 0.16);
	border-color: #b8cbe4;
}

.produto-icon {
	width: 62px;
	height: 62px;
	margin: 0 auto 16px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #ebf2fb 0%, #dbe7f6 100%);
	border: 1px solid #c8d8ec;
}

.produto-icon svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: #244a82;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.produto-card h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: #123467;
	margin-bottom: 11px;
	line-height: 1.35;
}

.produto-card p {
	font-size: 0.94rem;
	color: #2f4f7f;
	line-height: 1.7;
}

.produtos-cta {
	text-align: center;
	font-size: 1rem;
	color: #2f4f7f;
	padding: 14px 18px;
	background: rgba(231, 238, 247, 0.8);
	border: 1px solid #d0ddec;
	border-radius: 10px;
	line-height: 1.7;
}

.produtos-cta a {
	color: #244a82;
	font-weight: bold;
	text-decoration: none;
}

.produtos-cta a:hover {
	text-decoration: underline;
}

/* ===== CONTATO ===== */
.section-contato {
	position: relative;
	background: linear-gradient(180deg, rgba(244, 248, 253, 0.72) 0%, rgba(233, 240, 249, 0.68) 100%);
}

.section-contato .section-container {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid #d8e2f0;
	border-radius: 18px;
	padding: 34px;
	box-shadow: 0 16px 34px rgba(18, 52, 103, 0.1);
}

.contato-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 30px;
	align-items: stretch;
}

.contato-info {
	background: linear-gradient(165deg, #123467 0%, #244a82 100%);
	border-radius: 14px;
	padding: 26px;
	color: #dce8f8;
	box-shadow: 0 14px 30px rgba(18, 52, 103, 0.2);
}

.contato-info h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.65rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 14px;
	line-height: 1.2;
	letter-spacing: -0.3px;
}

.contato-info p {
	color: #d8e5f7;
	line-height: 1.8;
	margin-bottom: 24px;
	font-size: 0.98rem;
}

.contato-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.contato-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.95rem;
	color: #e7effb;
	min-width: 0;
}

.contato-list-icon {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(233, 240, 249, 0.12);
	border: 1px solid rgba(199, 214, 234, 0.45);
	flex-shrink: 0;
}

.contato-list-icon svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: #ffffff;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.contato-list-img {
	width: 26px;
	height: 26px;
	object-fit: contain;
	vertical-align: middle;
}

.contato-list-link {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #ffffff;
	transition: opacity 0.2s;
	min-width: 0;
	width: 100%;
}

.contato-list-link:hover {
	opacity: 0.85;
}

.hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

/* FORM */
.contato-form {
	background: linear-gradient(170deg, #ffffff 0%, #f5f9ff 100%);
	border-radius: 14px;
	padding: 36px;
	box-shadow: 0 10px 24px rgba(18, 52, 103, 0.12);
	border: 1px solid #d8e2f0;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	color: #123467;
	margin-bottom: 7px;
	text-transform: uppercase;
	letter-spacing: 0.85px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid #b7c7df;
	border-radius: 7px;
	font-size: 0.96rem;
	font-family: inherit;
	background: #fafcff;
	color: #123467;
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
	line-height: 1.45;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: #244a82;
	box-shadow: 0 0 0 3px rgba(36, 74, 130, 0.13);
	background: #fff;
}

.form-group textarea {
	resize: vertical;
	min-height: 110px;
}

.btn-enviar {
	width: 100%;
	padding: 13px;
	background: #244a82;
	color: #fff;
	border: none;
	border-radius: 7px;
	font-size: 0.96rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	letter-spacing: 0.55px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s;
}

.btn-enviar:hover {
	background: #123467;
	transform: translateY(-1px);
}

.btn-enviar:active {
	transform: translateY(0);
}

.btn-enviar:disabled {
	background: #999;
	cursor: not-allowed;
	transform: none;
}

.form-feedback {
	padding: 12px 16px;
	border-radius: 7px;
	font-size: 0.95rem;
	margin-bottom: 16px;
}

.feedback-success {
	background: #eafaf1;
	color: #1e8449;
	border: 1px solid #a9dfbf;
}

.feedback-error {
	background: #f3f7fc;
	color: #123467;
	border: 1px solid #b7c7df;
}

/* ===== FOOTER ===== */
.footer {
	background: rgba(18, 52, 103, 0.95);
	color: #d6deeb;
	text-align: center;
	padding: 22px 20px;
	font-size: 0.88rem;
}

/* ===== THEMES ===== */
body[data-theme="premium"] .navbar {
	background: linear-gradient(90deg, rgba(4, 15, 34, 0.95) 0%, rgba(9, 24, 48, 0.95) 55%, rgba(18, 41, 74, 0.95) 100%);
	border-bottom-color: rgba(126, 170, 235, 0.4);
}

body[data-theme="premium"] .navbar.scrolled {
	background: linear-gradient(90deg, rgba(4, 12, 28, 0.98) 0%, rgba(8, 21, 43, 0.98) 55%, rgba(15, 35, 64, 0.98) 100%);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.48);
}

body[data-theme="premium"] .theme-toggle {
	background: rgba(140, 182, 241, 0.14);
	border-color: rgba(159, 198, 250, 0.28);
	color: #dbe8ff;
}

body[data-theme="premium"] .theme-toggle:hover {
	background: rgba(159, 198, 250, 0.24);
	border-color: rgba(182, 214, 255, 0.45);
}

body[data-theme="premium"] .section-home {
	background: radial-gradient(circle at 20% 18%, rgba(71, 126, 212, 0.2) 0%, rgba(71, 126, 212, 0) 46%), linear-gradient(145deg, #071224 0%, #0c1d36 52%, #122a4a 100%);
}

body[data-theme="premium"] .section-home::before {
	background-image: linear-gradient(rgba(161, 196, 245, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(161, 196, 245, 0.08) 1px, transparent 1px);
}

body[data-theme="premium"] .home-title {
	color: #e4eeff;
}

body[data-theme="premium"] .home-title strong {
	color: #8eb8ff;
}

body[data-theme="premium"] .home-subtitle,
body[data-theme="premium"] .home-metric-value,
body[data-theme="premium"] .home-metric-label,
body[data-theme="premium"] .section-title,
body[data-theme="premium"] .section-subtitle,
body[data-theme="premium"] .produtos-cta,
body[data-theme="premium"] .produto-card h3,
body[data-theme="premium"] .produto-card p,
body[data-theme="premium"] .form-group label,
body[data-theme="premium"] #mathChallengeLabel,
body[data-theme="premium"] .home-highlight-label,
body[data-theme="premium"] .home-highlight-item strong {
	color: #c4d7f5;
}

body[data-theme="premium"] .home-metric-item,
body[data-theme="premium"] .home-highlight-item,
body[data-theme="premium"] .home-panel,
body[data-theme="premium"] .produto-card,
body[data-theme="premium"] .contato-form,
body[data-theme="premium"] .section-produtos .section-container,
body[data-theme="premium"] .section-contato .section-container {
	background: linear-gradient(165deg, rgba(12, 30, 56, 0.9) 0%, rgba(15, 37, 67, 0.92) 100%);
	border-color: rgba(112, 152, 209, 0.35);
	box-shadow: 0 18px 34px rgba(3, 10, 22, 0.35);
}

body[data-theme="premium"] .produtos-cta,
body[data-theme="premium"] .produtos-cta a {
	color: #0f2543;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.nav-toggle {
		display: flex !important;
	}

	.nav-logo-img {
		height: 38px;
	}

	.theme-toggle {
		order: -1;
		margin-right: 10px;
		width: 36px;
		height: 36px;
	}

	.theme-toggle-icon {
		width: 17px;
		height: 17px;
	}

	.nav-menu {
		display: none !important;
		position: fixed;
		top: 70px;
		left: 8px;
		right: 8px;
		background: linear-gradient(180deg, rgba(11, 37, 80, 0.98) 0%, rgba(18, 52, 103, 0.98) 100%);
		border: 1px solid rgba(255, 255, 255, 0.18);
		border-radius: 14px;
		box-shadow: 0 12px 28px rgba(10, 28, 58, 0.35);
		flex-direction: column;
		gap: 2px;
		padding: 10px 0 14px;
		z-index: 999;
	}

	.nav-menu.open {
		display: flex !important;
	}

	.nav-link {
		display: block;
		padding: 13px 22px;
		margin: 0 10px;
		border-radius: 10px;
		font-size: 1rem;
	}

	.home-layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.home-content {
		text-align: center;
	}

	.home-title {
		font-size: 2.15rem;
	}

	.home-subtitle {
		font-size: 0.98rem;
		max-width: 100%;
	}

	.home-actions {
		justify-content: center;
	}

	.home-metrics {
		grid-template-columns: 1fr;
		max-width: 100%;
	}

	.section-produtos .section-container,
	.section-contato .section-container {
		padding: 24px 18px;
	}

	.home-panel {
		padding: 18px;
		height: auto;
	}

	.contato-wrapper {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.contato-info,
	.contato-form {
		padding: 22px 16px;
	}

	.contato-list {
		gap: 10px;
	}

	.contato-list li,
	.contato-list-link {
		align-items: flex-start;
	}

	.contato-list li span:last-child,
	.contato-list-link span:last-child {
		word-break: break-word;
		overflow-wrap: anywhere;
		line-height: 1.5;
	}

	.section {
		padding: 90px 16px 50px;
	}

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

@media (max-width: 480px) {
	.nav-logo-img {
		height: 32px;
	}

	.home-title {
		font-size: 1.55rem;
	}

	.section-title {
		font-size: 1.6rem;
	}

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

	.contato-list li,
	.contato-list-link {
		font-size: 0.9rem;
	}

	.contato-list-icon {
		width: 32px;
		height: 32px;
	}

	.contato-list-icon svg {
		width: 16px;
		height: 16px;
	}
}