/* Reset de base */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Segoe UI', sans-serif;
	line-height: 1.6;
	background: #f8f9fa;
	color: #575a7b;
}

p{
	padding: 20px;
}

a {
	color: #e7174a;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

footer div.container p{
	padding: 0px;
}
footer div.container img{
	margin: 10px;
	display: inline;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	animation: fadeIn 1.2s ease-out both;
}


.container {
	width: 90%;
	max-width: 900px;
	margin: auto;
	padding: 2rem 0;
	position: relative;
	z-index: 2;
}

/* Hero Section */
.hero {
	position: relative;
	background: url('HP-IDF.jpg') center/cover no-repeat;
	color: #f8f9fa;
	text-align: center;
	padding: 6rem 0;
}

.hero .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(239 ,221, 226, 0.6);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 0;
}

.logo {
	width: 180px;
	display: block;
	margin: 0 auto 2rem auto;
}

/* Hero Text */
.hero h1 {
	font-size: 2.2rem;
	margin-bottom: 1rem;
	color: #011826;
}

.hero .subtitle {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #011826;
}

/* CTA Form */
.cta-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 400px;
	margin: 0 auto;
}

.cta-form input, .cta-form button {
	padding: 0.75rem;
	font-size: 1rem;
	border: none;
	border-radius: 5px;
}

.cta-form input {
	border: 1px solid #ccc;
	background-color: #fff;
}

.cta-form button {
	background-color: #e7174a;
	color: #f8f9fa;
	cursor: pointer;
	transition: background 0.3s ease;
}

.cta-form button:hover {
	background-color: #c41542;
}

.cta-form label{
	text-align: left;
	color: #011826;
}

/* Section Styles */
.section {
	background: white;
}

.section h2 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: #2cc1aa;
}

.section ul {
	list-style: none;
	padding-left: 1rem;
}

.section ul li {
	padding: 0.5rem 0;
	font-size: 1.1rem;
}

.section ul li:last-child {
	margin-bottom: 30px;
}

/* Testimonial */
.testimonial {
	background: rgba(38, 174, 97, 0.1);
	font-style: italic;
}

.testimonial blockquote {
	font-size: 1.2rem;
	text-align: center;
	margin: 2rem auto;
	color: #575a7b;
}

.testimonial cite {
	display: block;
	margin-top: 1rem;
	font-style: normal;
	color: #575a7b;
}

/* Footer */
footer {
	background: #011826;
	color: #fff;
	text-align: center;
	padding: 2rem 0;
}

footer a {
	color: #2cc1aa;
	text-decoration: none;
}

footer a:hover {
	text-decoration: none;
}
