﻿#efecto{
	position: relative;
	width: 100%;
	height: auto;
	float: left;
}

#efecto-frase{
	background: rgba(256,256,256,0.7);
	position: absolute;
	top: 220px;
	left: 100px;
	z-index: 1000;
	font-size: 24px;
	color: #de4b39;
	font-weight: bold;
	padding: 10px;

	text-shadow:1px 1px 1px white;
}

#frases{
	border: 0px solid red;
	width: 100%;
	float: left;
}

.frase1{
	border: 0px solid red;
	background: #de4b39;
	width: 33.33%;
	color: white;
	text-align: center;
	font-size: 24px;
	line-height: 44px;
	font-weight: bold;
	float: left;
	padding: 10px 20px;

	text-shadow:1px 1px 1px #000;

	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-o-box-sizing:border-box;
}

.frase2{
	background: white;
	width: 33.33%;
	color: red;
	text-align: center;
	font-size: 29px;
	line-height: 44px;
	float: left;
	padding: 10px 20px;

	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-o-box-sizing:border-box;
}

#formulario{
	background: #de4b39;
	width: 33.33%;
	color: white;
	float: left;
	padding: 10px;

	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-o-box-sizing:border-box;
}


@media screen and (max-width: 700px){
	#efecto-frase{
		left: 0px;
	}

	.frase1, .frase2, #formulario{
		width: 100%;
	}
}

@media screen and (max-width: 400px){
	.frase1, .frase2{
		text-align: left !important;
		line-height: 26px;
		font-weight: normal;
		font-size: 20px;
	}
}