body {
    background-color: $blanco;
    min-height: 100vh;
    width: 100%;
    position: relative;
	font-family: $font-family-syne;

	@media screen and (min-width: 768px) {
		padding-bottom: 127px;
	}
	@media screen and (min-width: 768px) {
		padding-bottom: 83px;
	}
	@media screen and (max-width: 991px) {
		padding-top: 85px;
	}

	* {
		outline: none !important;
	}

    @import '../components/custom-margin';
    @import '../components/custom-max-width';
	@import '../components/custom-width';

	@import '../components/loading';

	a:hover,
	a:focus,
	a:active,
	a {
		color: inherit;
		text-decoration: none;
    }

    .pointer {
        cursor: pointer;
    }

    .bg {
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		width: 100%;
		height: auto;

		img {
			width: 100%;
			height: auto;
			visibility: hidden;
		}

		&.bg-size-contain {
			background-size: contain;
		}

		&.bg-size-auto {
			background-size: auto;
		}

		&.bg-size-cover {
			background-size: cover;
		}
	}

	.btn {
		&.btn-verde {
			border-radius: 20px;
			font-size: 15px;
			font-weight: 500;
			letter-spacing: 0.31px;
			padding: 12px 30px;
		}

		&.btn-verde {
			background-color: $color1;
			color: $blanco;
		}

		&.btn-blanco{
			border-radius: 20px;
			font-size: 24px;
    		letter-spacing: 0.31px;
    		font-weight: bold;
    		font-family: 'Syne';
		}
		&.btn-blanco {
			background-color: $blanco;
			color: $color1;
		}
	}

	.titulo{
		font-family: $font-family-futura;
		font-size: 20px;
		font-weight: bold;
		letter-spacing: 0.34px;
		color: $color1;

		@media screen and (min-width: 992px) {
			font-size: 28px;
		}
	}

	p {
		font-size: 16px;
		letter-spacing: 0.19px;
		color: $color1;
		font-weight: 500;
	}

	.flotting-whats {
		position: fixed;
		bottom: 40px;
		right: 40px;
		z-index: 200;
	}
}