/* ==========================================================================
   Component Styles (WhatsApp, Contact CTA, Sections, etc.)
   ========================================================================== */

/* WhatsApp Float Button */
.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 30px;
	right: 30px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50%;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none;
	animation: pulse 2s infinite;
}

.whatsapp-float:hover {
	background-color: #128c7e;
	transform: scale(1.1);
	box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
	width: 35px;
	height: 35px;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

@media (max-width: 768px) {
	.whatsapp-float {
		width: 55px;
		height: 55px;
		bottom: 20px;
		right: 20px;
	}

	.whatsapp-icon {
		width: 30px;
		height: 30px;
	}
}

/* Contact CTA Section */
.contact-cta {
	position: relative;
	padding: 120px 0;
	background-size: cover;
	background-position: 40% 35%;
	background-repeat: no-repeat;
	overflow: hidden;
}

.contact-cta-overlay {
	display: none;
}

.contact-cta-container {
	max-width: 1368px;
	margin: 0 auto;
	padding: 0 1rem;
	display: flex;
	flex-direction: column;
	gap: 48px;
	align-items: center;
}

.contact-cta-left {
	color: var(--color-white);
}

.shield-icon {
	margin-bottom: 16px;
}

.contact-cta-title {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 1.875rem;
	line-height: 1.2;
	margin: 0 0 16px 0;
}

.contact-cta-subtitle {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	max-width: 608px;
}

.contact-cta-form {
	display: grid;
	gap: 24px;
}

.inputs-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.field {
	display: block;
}

.field input,
.field textarea {
	width: 100%;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.9);
	background: transparent;
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 1rem;
	padding: 0 24px;
}

.field input {
	height: 68px;
}

.field textarea {
	padding-top: 18px;
	padding-bottom: 18px;
	min-height: 180px;
}

.field input::placeholder,
.field textarea::placeholder {
	color: rgba(255,255,255,0.92);
}

.field input:focus,
.field textarea:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.65);
	border-color: var(--color-yellow);
}

.checkbox-field {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	cursor: pointer;
}

.checkbox-field input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	cursor: pointer;
	flex-shrink: 0;
}

.checkbox-text {
	color: var(--color-white);
	font-size: 0.9375rem;
	line-height: 1.5;
}

.checkbox-text a {
	color: var(--color-yellow);
	text-decoration: underline;
}

.checkbox-text a:hover {
	color: var(--color-white);
}

.privacy-note {
	color: var(--color-white);
	font-size: 0.875rem;
	line-height: 1.5;
	opacity: 0.8;
	margin-top: 8px;
	grid-column: 2;
}

.cta-row {
	margin-top: 8px;
}

.btn-contact {
	background: var(--color-yellow);
	color: var(--color-primary);
	border: none;
	border-radius: 80px;
	min-width: 278px;
	min-height: 57px;
	padding: 0.875rem 2rem;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-contact:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(255, 204, 0, 0.25);
}

/* Tablet */
@media (min-width: 768px) {
	.contact-cta-title {
		font-size: 2.25rem;
	}
	
	.contact-cta-subtitle {
		font-size: 1.0625rem;
	}
	
	.contact-cta-container {
		display: grid;
		grid-template-columns: 1fr;
		gap: 64px;
	}
}

/* Desktop */
@media (min-width: 1024px) {
	.contact-cta-title {
		font-size: 2.5rem;
	}
	
	.contact-cta-container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 80px;
		row-gap: 10px;
	}
	
	.inputs-row {
		grid-template-columns: repeat(2, 328px);
	}
	
	.contact-cta-form {
		justify-self: end;
		width: 680px;
	}
}
