@charset "utf-8";

/* CSS Document */
/* =========================
RESET
========================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background: #f7f3f6;
	color: #1f1f1f;
	overflow-x: hidden;
}

/* =========================
TOP NAVIGATION
========================= */
.topbar {
	width: 100%;
	background: #fff;
	padding: 24px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #ececec;
}

.logo {
	font-size: 48px;
	font-weight: 800;
	color: #000;
	letter-spacing: -3px;
}

.logo span {
	color: #d92e86;
}

.nav {
	display: flex;
	gap: 35px;
	align-items: center;
}

.nav a {
	text-decoration: none;
	color: #333;
	font-size: 15px;
	font-weight: 600;
}

.contact-btn {
	padding: 14px 26px;
	border-radius: 50px;
	background: linear-gradient(90deg, #ff4ca0, #c23dd8);
	color: #fff !important;
}

/* =========================
TOP PINK BAR
========================= */
.top-gradient {
	width: 100%;
	height: 90px;
	background: linear-gradient(90deg, #ff4ca0, #b23dd7, #7d4dff);
	position: relative;
	overflow: hidden;
}

.top-gradient::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 300px;
	height: 100%;
	background-image: radial-gradient(rgba(255, 255, 255, .4) 1px, transparent 1px);
	background-size: 12px 12px;
	opacity: .6;
}

/* =========================
MAIN WRAPPER
========================= */
.wrapper {
	max-width: 1400px;
	margin: auto;
	padding: 60px 30px;
}

.contact-grid2 {
	display: grid;
	grid-template-columns: 320px 1fr 320px;
	gap: 40px;
	align-items: start;
}

/* =========================
LEFT SIDE
========================= */
.left-box h2 {
	font-size: 30px;
	line-height: 1.2;
	margin-bottom: 25px;
	color: #d92e86;
}

.left-box p {
	font-size: 19px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 35px;
}

.divider {
	width: 70px;
	height: 4px;
	background: #d92e86;
	border-radius: 20px;
	margin-bottom: 35px;
}

.whatsapp-box {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 35px;
}

.whatsapp-icon {
	width: 82px;
	height: 82px;
	border-radius: 50%;
	background: #25D366;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 42px;
}

.whatsapp-text a {
	font-size: 26px;
	color: #d92e86;
}

.whatsapp-text span {
	display: block;
	color: #666;
	margin-bottom: 6px;
}

.whatsapp-text strong {
	color: #d92e86;
	font-size: 34px;
}

/* =========================
INFO CARDS
========================= */
.info-card {
	width: 100%;
	background: #fff;
	border: 1px solid #f0d8e5;
	border-radius: 18px;
	padding: 18px 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	transition: .2s;
}

.info-card a {
	text-decoration: none;
	color: #444;
}

.info-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.info-left {
	display: flex;
	align-items: center;
	gap: 14px;
}

.info-left i {
	color: #d92e86;
	font-size: 18px;
}

/* =========================
SOCIALS
========================= */
.socials {
	display: flex;
	gap: 14px;
	margin-top: 35px;
	flex-wrap: wrap;
}

.socials a {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #f0d8e5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 18px;
	transition: .2s;
	text-decoration: none;
}

.socials a:hover {
	background: linear-gradient(90deg, #ff4ca0, #c23dd8);
	color: #fff;
	transform: translateY(-3px);
}

.socials img {
    filter: brightness(0);
}

.socials img:hover {
    filter: brightness(100);
}

.socials-icons {
  	display: flex;
  	gap: 12px;
  	margin-top: -30px;
}

/* =========================
FORMULAR
========================= */
.form-box {
	background: #fff;
	border-radius: 28px;
	padding: 45px;
	box-shadow: 0 15px 60px rgba(0, 0, 0, .06);
}

.form-box h3 {
	font-size: 48px;
	margin-bottom: 35px;
}

.form-underline {
	width: 70px;
	height: 4px;
	background: #d92e86;
	border-radius: 30px;
	margin-bottom: 35px;
}

.form-group {
	margin-bottom: 26px;
}

.form-group label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 12px;
}

/* =========================
INPUT ICONS
========================= */
.input-icon {
	position: relative;
}

.input-icon i {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: #9c9c9c;
	font-size: 16px;
	z-index: 2;
}

.form-control {
	width: 100%;
	height: 66px;
	border-radius: 16px;
	border: 1px solid #e4e4e4;
	padding: 0 20px 0 54px;
	font-size: 16px;
	outline: none;
	transition: .2s;
	background: #fff;
}

.form-control:focus {
	border-color: #d92e86;
	box-shadow: 0 0 0 4px rgba(217, 46, 134, .1);
}

textarea.form-control {
	height: 160px;
	resize: none;
	padding-top: 22px;
}

.textarea-icon i {
	top: 24px;
	transform: none;
}

/* =========================
BUTTON
========================= */
.submit-btn {
	width: 100%;
	height: 72px;
	border: none;
	border-radius: 18px;
	background: linear-gradient(90deg, #ff4ca0, #c23dd8);
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	transition: .2s;
	margin-top: 10px;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(217, 46, 134, .35);
}

.submit-btn i {
	font-size: 20px;
}

/* =========================
RIGHT SIDE
========================= */
.right-box h3 {
	font-size: 30px;
	line-height: 1.2;
	margin-bottom: 25px;
}

.right-underline {
	width: 70px;
	height: 4px;
	background: #d92e86;
	border-radius: 30px;
	margin-bottom: 35px;
}

.feature {
	display: flex;
	gap: 18px;
	margin-bottom: 28px;
}

.feature i {
	color: #d92e86;
	font-size: 24px;
	margin-top: 4px;
}

.feature strong {
	display: block;
	margin-bottom: 6px;
	font-size: 18px;
}

.feature p {
	color: #666;
	line-height: 1.6;
}

/* =========================
CHECKBOX CARD
========================= */
.benefits {
	margin-top: 40px;
	background: #fff;
	border-radius: 24px;
	border: 1px solid #f0d8e5;
	padding: 30px;
}

.benefits h4 {
	font-size: 26px;
	margin-bottom: 24px;
}

.benefits ul {
	list-style: none;
}

.benefits li {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
	color: #555;
	font-size: 17px;
}

.benefits li i {
	color: #d92e86;
}

/* =========================
BOTTOM STATS
========================= */
.stats {
	margin-top: 60px;
	border-radius: 28px;
	background: linear-gradient(90deg, #ff4ca0, #c23dd8, #7d4dff);
	padding: 40px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	color: #fff;
}

.stat {
	text-align: center;
}

.stat i {
	font-size: 38px;
	margin-bottom: 18px;
}

.stat h5 {
	font-size: 42px;
	margin-bottom: 10px;
}

.stat p {
	font-size: 17px;
	opacity: .95;
}

/* =========================
RESPONSIVE
========================= */
@media(max-width:1200px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.stats {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.stat {
		text-align: left;
	}
	
	.stat i {
		width: 60px;
	}
}

@media(max-width:858px) {

	.contact-grid2 {
		grid-template-columns: 1fr;
	}
}

@media(max-width:768px) {
	.topbar {
		flex-direction: column;
		gap: 25px;
		padding: 25px;
	}

	.nav {
		flex-wrap: wrap;
		justify-content: center;
		gap: 18px;
	}

	.logo {
		font-size: 42px;
	}

	.form-box {
		padding: 30px;
	}

	.form-box h3 {
		font-size: 38px;
	}

	.stats {
		grid-template-columns: 1fr;
	}

	.whatsapp-text strong {
		font-size: 28px;
	}
}