.nav-link {
	color: white !important;
}

* :not(.fab):not(.fa-solid):not(.nav-link){
	color: #5BA687 !important;
	font-family: "Montserrat", serif !important;
	font-optical-sizing: auto;
}

.center-cropped {
	background-position: center center;
	background-repeat: no-repeat;
}

.image {
	width: 300px;
	height: 300px;
}

.image2 {
	width: 400px;
	height: 400px;
}

.image-vertical {
	height: 88vh;
}

.image-horizontal {
	width: 60%;
}

.section h1, .section p {
	margin-bottom: 20px;
}

.section img {
	border-radius: 10px;
	margin-bottom: 20px;
}

html {
	scroll-behavior: smooth;
}

p {
	font-size: 1.5rem !important;
}

.link{
	font-size: 1.5rem !important;
}

.parallax {
	background-image: url('background.jpeg'); /* Imagen de fondo */
	min-height: 100vh;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.section {
	padding: 30px 0;
}

.whatsapp-icon {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #25d366;
	border-radius: 20%;
	padding: 15px;
	color: white;
	font-size: 30px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	transition: background-color 0.3s;
}

.whatsapp-icon:hover {
	background-color: #128c7e;
}

.iterra-bg {
	background-color: #35504B !important;
}

.iterra-font {
	color: #B6DA9E !important;
}

.iterra-efecto {
	text-shadow: 1px 1px 2px #FFFFFF, 0 0 1em #B6DA9E, 0 0 0.2em #128c7e;
}

.iterra-sec {
	color: #35504B !important;
}

.iterra-round {
	/*border-radius: 50% 20% / 10% 40%;*/
	border-radius: 50% !important;
	overflow-x: clip;
	max-width: 100%;
}

.flip-card {
	background-color: transparent;
	width: 300px;
	height: 300px;
	perspective: 1000px;
}

.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden; /* Safari */
	backface-visibility: hidden;
}

.flip-card-front {
	
}

.flip-card-back {
	transform: rotateY(180deg);
	position: absolute;
    top: 50%;
    margin-top: -100px;
}

.ul-bullet {
	 list-style-type: none;
}

.image-container {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.image-container.show {
	opacity: 1;
	transform: translateY(0);
}

.texto-sombreado {
	text-shadow:
    -1px -1px 3px #999,
    0 0 1px darkred,
    1px 1px 1px red,
    2px 2px 1px #555,
    3px 3px 1px #222,
    4px 4px 1px #000;
}