@charset "utf-8";

* {
	margin: 0;
	padding:0;
	-webkit-box-sizing:border-box;
    -moz-box-sizing:   border-box;
    box-sizing:        border-box;
}
html {
	--negro: #212A50;
	--blanco: #ffffff;
	--azul: #59C1DC;
	--verde: #25D366;
	--gris: #848484;
	--grisClaro: #F5F7FB;
}

body {
	font-family: 'Poppins';
	font-weight: normal;
	color: var(--negro);
	background: var(--grisClaro);
	line-height:1.5;
	overflow-x:hidden !important;
}

h1 {
	line-height:1;
	font-family: 'Poppins Semibold';
	font-weight: normal;
	font-size: 2.7em;
}
h2 {
	line-height:1;
	font-family: 'Poppins Semibold';
	font-weight: normal;
}
h3 {
	font-size: 1.3em;
}
a {
	font-size: 0.9em;
    text-decoration:none;
	color: var(--negro);
	cursor: pointer;
}
a:active {
	outline: none;
    border: none;
}
button {
	font-family: 'Poppins';
	font-size: 1.2em;
	border-radius: 9px !important;
	cursor: pointer !important;
	border: none;
	transition: all 0.6s ease-in-out;
}
button:active {
    outline: none;
    border: none;
}
button:hover {
	cursor:pointer;
}
button:focus,
input:focus,
textarea:focus {
	outline:none;
}
p, ul, ol {
	font-size:1em;
}
p b {
	font-family: 'Poppins Semibold';
	font-weight: normal;
}

::selection {
	color: var(--blanco);
	background: var(--azul);
}
::-moz-selection {
	color: var(--blanco);
	background: var(--azul);
}

/* --------------------------- full --------------------------- */

#superContainer {
    height: 100%;
    position: relative;
	/* Touch detection for Windows 8 */
	-ms-touch-action: none; 
}
.section {
	padding: 24px 0 0;
    position: relative;
}
.slide, .slidesContainer {
    height: 100% !important;
    display: block;
}
.section.table, .slide.table {
    display: table;
    width: 100%;
}
.tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height:100%;
}
#fullpage {
	overflow:hidden;
}

/* --------------------------- body --------------------------- */

.btn {
	font-size: 1em;
	padding: 9px 36px;
	color: var(--blanco);
	background: var(--azul);
}
.btn:hover {
	background: var(--negro);
	box-shadow:        3px 3px 3px 0px rgba(0,0,0,0.3);
	-webkit-box-shadow:3px 3px 3px 0px rgba(0,0,0,0.3);
	-moz-box-shadow:   3px 3px 3px 0px rgba(0,0,0,0.3);
}

header {
	width: 100%;
	position: fixed;
	top: 0;
	left:0;
	padding:9px 0;
	background: var(--blanco);
	transition: all ease-in-out 0.6s;
	box-shadow:        3px 3px 3px 0px rgba(0,0,0,0.3);
	-webkit-box-shadow:3px 3px 3px 0px rgba(0,0,0,0.3);
	-moz-box-shadow:   3px 3px 3px 0px rgba(0,0,0,0.3);
	z-index: 99;
}
header.active {
	padding:6px 0;
}
header .inter {
	width: calc(100% - 48px);
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .inter div img {
	height: 81px;
	transition: all ease-in-out 0.6s;
	margin: 6px 0 0;
}
header .inter div img.img2 {
	display: none;
}
header.active .inter div img {
	height: 72px;
}
header .inter div:last-child a {
	font-family: 'Poppins Light';
	font-size: 0.9em;
	margin: 0 0 0 15px;
	position: relative;
}
header .inter div:last-child a:hover,
header .inter div:last-child a.active {
	color: var(--azul);
}
header .inter div:last-child a:last-child::after {
	display: none;
}
header .inter div:last-child {
	text-align: right;
}
header .inter div .btn {
	padding: 9px 18px;
	background: var(--negro);
}

#openmenu {
	width: 100vw;
	height:100vh;
	position: fixed;
	display: block;
	top: 0;
	left:100%;
	transition: all 0.6s ease-in-out;
	background: var(--negro);
	padding: 150px 15px 24px;
	text-align: center;
	z-index: 66;
}
#openmenu.active {
	left: 0;
}
#openmenu a {
	font-size: 1.5em;
	display: block;
	color: var(--blanco);
	position: relative;
	opacity: 0.7;
}
#openmenu a.active {
	opacity: 1;
}
#openmenu a.active::after {
	content: '';
	width: 100%;
	height:2px;
	background: var(--verde);
	position: absolute;
	left:  0;
	bottom:0;
}
#openmenu div:last-child {
	padding: 24px 0 0;
}
#openmenu div:last-child a {
	opacity: 1;
}
#openmenu .btn {
	font-size: 0.6em !important;
	color: var(--blanco);
	margin: 0 0 18px;
	padding:9px 12px;
	background: var(--azul);
}

.btn-menu {
	width: 42px;
	height:42px;
	background: var(--verde);
	border-radius: 50% !important;
	position: relative;
	display: none;
}
.btn-menu span {
	width: 21px;
	height:2px;
	background: var(--blanco);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease-in-out;
}
.btn-menu span::before,
.btn-menu span::after {
	content: '';
	width: 100%;
	height:2px;
	background: var(--blanco);
	position: absolute;
	left: 0;
	transition: all 0.6s ease-in-out;
}
.btn-menu span::before {
	top: -7px;
}
.btn-menu span::after {
	bottom:-7px;
}
/* active */
.btn-menu.active span {
	background: none;
}
.btn-menu.active span::before {
	top: 0;
	transform: rotate(45deg);
}
.btn-menu.active span::after {
	bottom:0;
	transform: rotate(-45deg);
}

h1 span {
	font-size: 0.42em;
	font-family: 'Poppins Light';
	display: block;
	margin: 30px 0 0;
}

#extra {
	width: 100%;
	height:93px;
	display: block;
}

#portada {
	width: 100vw;
	height:calc(100vh - 120px);
	background: var(--negro);
	display: flex;
	align-items: center;
	position: relative;
}
#portada .cuadro {
	width: calc(100% - 48px);
	max-width: 1200px;
	margin: 0 auto;
	padding:0 42% 0 0;
	color: var(--blanco);
	position: relative;
	animation-duration: 1.5s;
	animation-delay: 0.6s;
	z-index: 3;
}
#portada .cuadro h1 {
	margin: 0;
}
#portada .cuadro h1 span {
	color: var(--grisClaro);
}
#portada .cuadro button {
	margin: 48px 0 0;
}
#portada .foto {
	width: 100%;
	height:100%;
	position: absolute;
	overflow: hidden;
	animation-duration: 1.5s;
}
#portada .foto img {
	width: 100%;
}

.portaRedes {
	width: 100vw;
	background: var(--blanco);
	padding: 3px 0;
	top: 90px;
	border-bottom: solid 1px var(--grisClaro);
	z-index: 60;
}
.portaRedes div {
	width: calc(100% - 48px);
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
}
.portaRedes div a {
	font-size: 1em;
	margin: 0 0 0 18px;
}
.portaRedes div a:first-child {
	color: var(--verde);
}

.box {
	width: calc(100% - 48px);
	max-width: 1200px;
	margin: 48px auto 30px;
	display: flex;
}
.box .titulo {
	width: calc(50% - 12px);
	margin: 12px 0;
	position: relative;
	animation-duration: 1.5s;
	animation-delay: 0.6s;
	z-index: 3;
}

.portaServicios {
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 48px 0 0;
}
.portaServicios .servicio {
	width: calc(25% - 15px);
	min-width: 210px;
	background: var(--blanco);
	margin: 0 0 21px;
	padding:30px 18px;
	border-radius: 24px;
	text-align: center;
	animation-duration: 1.5s;
	animation-delay: 0.9s;
}
.portaServicios .servicio:nth-child(2n) {
	animation-delay: 0.7s;
}
.servicio.empty {
	background: none;
}
.servicio.empty .btn {
	width: 100%;
	margin: 0;
	/*display: none;*/
}
.portaServicios .servicio {
	position: relative;
}
.portaServicios .servicio img {
	width: 33.3%;
}
.portaServicios .servicio h3 {
	font-family: 'Poppins';
	font-size: 1.2em;
	color: var(--negro);
	margin: 18px auto;
	line-height: 1;
}
.portaServicios .servicio p {
	font-family: 'Poppins Light';
	font-size: 0.9em;
	margin: 9px 0;
	animation-duration: 1.8s;
	animation-delay: 1.2s;
	color: var(--gris);
}

#bio {
	width: calc(100% - 48px);
	max-width: 1200px;
	margin: 60px auto;
	padding:60px 0 0;
	position: relative;
	display: flex;
	align-items: center;
}
#bio .side {
	width: 50%;
	padding: 0 12px;
	animation-duration: 1.5s;
	animation-delay: 0.6s;
}
#bio .side:last-child {
	text-align: center;
}
#bio .side .img-perfil {
	width: 100%;
	max-width: 420px;
	margin: 0 3px 0 0;
	border-radius: 24px;
}
#bio .side table {
	animation-duration: 1.5s;
	animation-delay: 1.2s;
	color: var(--azul);
	margin: 15px 0;
}
#bio .side table tr td.tit {
	font-family: 'Poppins Semibold';
	color: var(--gris);
	padding: 0 12px 0 0;
}
#bio .side p {
	margin: 15px 0;
	animation-duration: 1.5s;
	animation-delay: 1.2s;
}
#bio .side h2 {
	font-size: 2.1em;
	color: var(--negro);
	font-family: 'Poppins Semibold';
	margin: 0 0 48px;
}
#bio .side p {
	color: var(--gris);
}
#bio .side ul,
#bio .side ol {
	list-style: none;
	color: var(--gris);
	margin: -9px 0 24px;
	animation: 1.5s;
	animation-delay: 1.2s;
}
#bio .side ul li,
#bio .side ol li {
	padding: 0 0 0 12px;
	position: relative;
	animation-duration: 1.2s;
	animation-delay: 0.6s;
}
#bio .side ul li::after,
#bio .side ol li::after {
	content: '';
	width: 6px;
	height:6px;
	background: var(--azul);
	position: absolute;
	top: 50%;
	left:0;
	transform: translateY(-50%);
	border-radius: 50%;
}

#bio #barra {
	width: 100%;
	position: relative;
	display: flex;
	margin: 24px 0;
}
#bio #barra div {
	width: 50%;
}
#bio #barra div.idiomas h3 {
	padding:0 0 18px;
	text-transform: uppercase;
}
#bio #barra div.idiomas ol li {
	padding: 6px 0 6px 30px;
}
#bio #barra div.idiomas ol li::after {
	width: 21px;
	height:21px;
	z-index: 1;
}
#bio #barra div.idiomas ol li::before {
	content: '';
	width: 9px;
	height:3px;
	border: solid 2px var(--blanco);
	border-left:  none;
	border-bottom:none;
	background: none;
	position: absolute;
	top: 13px;
	left:4px;
	transform: rotate(-225deg);
	z-index: 3;
}

#bio .portaLogos {
	display: flex;
	margin: 24px 0 0;
	overflow: hidden;
	justify-content: flex-end;
}
#bio .portaLogos img {
	width: auto;
	height:120px;
	margin: 0 24px 0 0;
	animation-duration: 1.5s;
	animation-delay: 1.5s;
}

.div-bio-left {
    background: rgba(255,255,255,.8);
    padding: 20px 30px !important;
}

.premios {
	width: calc(100% - 48px);
	max-width: 1200px;
	margin: 12px auto;
	padding:18px 0;
	position: relative;
	overflow: hidden;
}
.premios #linea {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	justify-content: center;
}
.premios div {
	width: 25%;
	position: relative;
	overflow: hidden;
	animation-duration: 1.5s;
	animation-delay: 0.9s;
}
.premios div img {
	width: 60px;
	margin:30px auto;
}
.premios div span {
	width: 15px;
	height:15px;
	display: block;
	background: var(--azul);
	margin: 0 auto;
	border-radius: 50%;
}
.premios div span::after {
	content: '';
	width: 100%;
	height:2px;
	background: var(--gris);
	position: absolute;
	left: 0;
	transform: translateY(6px);
	z-index: -1;
}
.premios div p {
	font-size: 0.9em;
	display: block;
	padding: 30px;
}

#mapa {
	width: calc(100% - 48px);
	max-width: 1200px;
	margin: 12px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
#mapa .sideMapa {
	width: calc(50% - 30px);
	position: relative;
}
#mapa .sideMapa h1 {
	margin: 0 0 48px;
}
#mapa .sideMapa .btn-mapa {
	width: 100%;
	background: var(--blanco);
	margin: 0 0 42px;
	padding:24px;
	border: solid 1px var(--blanco);
	border-radius: 24px;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	opacity: 0.7;
}
#mapa .sideMapa .btn-mapa.active,
#mapa .sideMapa .btn-mapa:hover {
	opacity: 1;
	box-shadow:        3px 3px 3px 0px rgba(0,0,0,0.3);
	-webkit-box-shadow:3px 3px 3px 0px rgba(0,0,0,0.3);
	-moz-box-shadow:   3px 3px 3px 0px rgba(0,0,0,0.3);
}
#mapa .sideMapa .btn-mapa.active {
	border-color: var(--azul);
}
#mapa .sideMapa .btn-mapa span {
	color: var(--azul);
	margin: 0 24px 0 0;
}
#mapa .sideMapa .btn-mapa h2 {
	font-size: 1.2em;
}
#mapa .sideMapa .btn-mapa p {
	font-size: 0.9em;
	color: var(--gris);
	padding:12px 0 0;
}
#mapa .sideMapa iframe {
	width: calc(50vw - 30px);
	height:calc(100vh - 120px);
	position: relative;
	display: block;
}
#mapa .sideMapa .btn {
	position: absolute;
	left:  9px;
	bottom:11px;
	z-index: 3;
}

#enviado {
	width: 100%;
	position: relative;
	background: var(--verde);
	margin: 99px 0 0;
	padding:30px 0;
}
#enviado div {
	width: calc(100% - 48px);
	max-width: 1200px;
	margin: 0 auto;
}
#enviado div h2,
#enviado div p {
	color: var(--blanco);
}
#enviado div h2 {
	font-family: 'Poppins Semibold';
	font-size: 1.8em;
	margin: 0 0 24px;
}
#enviado div p {
	font-size: 1.2em;
}

.portaAgendar {
	width: calc(100% - 48px);
	max-width: 1200px;
	margin: 12px auto;
	padding:84px 0 18px;
	display: flex;
	align-items: center;
}
.portaAgendar div.side {
	width: 50%;
	animation-duration: 1.2s;
	animation-delay: 0.6s;
}
.portaAgendar div:last-child {
	text-align: center;
	overflow: hidden;
}
.portaAgendar p {
	font-size: 1.8em;
}
.portaAgendar button {
	font-size: 1.2em;
	margin: 24px 0;
	animation-duration: 1.5s;
	animation-delay: 1.5s;
}
.portaAgendar img {
	width: calc(100% - 30px);
	max-width: 600px;
	margin: 12px auto;
	animation-duration: 1.5s;
	animation-delay: 1.2s;
	border-radius: 30px;
}

#porta-whats {
	width: calc(100% - 48px);
	max-width: 1200px;
	position: fixed;
	left:  50%;
	bottom:15px;
	transform: translateX(-50%);
	pointer-events: none;
	text-align: right;
	z-index: 69;
}
.btn-whats {
	width: 48px;
	height:48px;
	border-radius: 50% !important;
	color: var(--blanco);
	background: var(--verde);
	pointer-events: visible;
	box-shadow:        3px 3px 3px 0px rgba(0,0,0,0.3);
	-webkit-box-shadow:3px 3px 3px 0px rgba(0,0,0,0.3);
	-moz-box-shadow:   3px 3px 3px 0px rgba(0,0,0,0.3);
}

#portaForm {
	width: 100%;
	color: var(--blanco);
	background: var(--negro);
}
#portaForm .inter {
	width: calc(100% - 48px);
	max-width: 1200px;
	margin: 48px auto;
	display: flex;
	align-items: center;
}
#portaForm .inter form,
#portaForm .inter .side {
	width: 100%;
}

form {
	position: relative;
	margin: 42px auto;
	padding:0 48px 0 0;
	animation-duration: 1.2s;
	animation-delay: 0.9s;
}
form h2 {
	font-size: 1.8em;
	margin: 0 0 42px
}
form p {
	margin: 0 0 42px;
}
form p.alerta {
	color: var(--verde);
	animation-duration: 0.9s;
	animation-delay: 0.6s;
}
form input,
form textarea {
	width: 100%;
	font-family: 'Poppins';
	font-size: 0.9em;
	border: none;
	border-radius: 12px;
	padding:9px 15px;
	margin: 0 0 21px;
	transition: all 0.3s ease-in-out;
}
form textarea {
	resize: none;
	min-height: 150px;
	padding: 12px 15px;
	border: solid 1px var(--negro);
}
form input:focus,
form textarea:focus {
	border-color: var(--verde);
}
form button {
	width: 100%;
}
form button:hover {
	background: var(--azul) !important;
}

#portaForm .inter .side {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
}
#portaForm .inter .side h2 {
	font-size: 1.8em;
	padding: 0 25%;
}
#portaForm .inter .side .btn {
	background: var(--verde) !important;
	margin: 42px auto 0;
}
#portaForm .inter .side .btn span {
	margin: 0 12px 0 0;
}

.fotos {
	width: calc(100% - 48px);
	max-width: 1200px;
	margin: 24px auto;
	display: flex;
	justify-content: space-between;
}
.fotos img {
	width: calc(50% - 9px);
	border-radius: 24px;
	animation-duration: 1.2s;
	animation-delay: 0.6s;
}

#fondo {
	width: 100vw;
	height:100vh;
	position: fixed;
	top: 0;
	left:0;
	z-index: 0;
}
#fondo svg {
	width: 12%;
	position: absolute;
	fill: var(--azul);
}
#fondo svg:nth-child(1) {
	top: 69px;
	left:0;
}
#fondo svg:nth-child(2) {
	top:  21vh;
	right:3%;
	fill: var(--negro);
}
#fondo svg:nth-child(3) {
	bottom:6vh;
	left:3%;
}
#fondo svg:nth-child(4) {
	bottom:0;
	right: 0;
	fill: var(--negro);
}

footer {
	width: 100vw;
	padding:15px 0;
	margin: 60px 0 0;
	background: var(--blanco);
}
footer .inter {
	width: calc(100% - 48px);
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .inter div {
	width: 50%;
}
footer p {
	font-size: 0.7em;
}
footer p a {
	position: relative;
}
footer p a span {
	font-size: 1.5em;
	position: absolute;
	color: var(--azul);
	top:  0;
	right:-24px;
}
footer .redes {
	text-align: right;
}
footer .redes a {
	color: var(--negro);
	font-size: 1.2em;
	margin: 0 0 0 18px;
}
footer .redes a:first-child {
	color: var(--verde);
}

@media screen and (max-width:666px) {
	
	h1 {
		font-size: 1.8em;
	}
	p, ul, ol {
		font-size: 0.9em;
	}
	.btn {
		ont-size: 0.9em;
		padding: 9px 33px;
	}
	
	header {
		padding:18px 0 9px;
	}
	header .inter {
		width: calc(100% - 30px);
	}
	header .inter div img {
		height: 48px;
	}
	header .inter div img.img1 {
		display: none;
	}
	header .inter div img.img2 {
		display: block;
	}
	header.active .inter div img {
		height: 36px;
	}
	header .inter div:last-child a {
		display: none;
	}

	.btn-menu {
		display: block;
	}

	#extra {
		height:72px;
	}
	
	#portada {
		height:calc(100vh - 99px);
	}
	#portada::after {
		width: 100vw;
	}
	#portada .cuadro {
		width: calc(100% -302px);
		padding:0;
	}
	#portada .cuadro h1 span {
		text-shadow: 3px 3px 3px rgba(0,0,0,0.3);
	}
	#portada .foto img {
		width: auto;
		height:100%;
	}
	.portaRedes div {
		justify-content: center;
	}

	.box {
		width: calc(100% - 30px);
	}
	.box .titulo,
	.box h1 {
		width: 100%;
	}

	.portaServicios {
		padding: 0;
	}
	.portaServicios .servicio {
		width: 100%;
		margin: 0 0 18px;
		padding:24px 15px;
		animation-delay: 0.7s;
	}
	.portaServicios .servicio:nth-child(2n) {
		animation-delay: 0.7s;
	}
	.portaServicios .servicio div {
		width: 27%;
		padding:0 0 27%;
	}
	.portaServicios .servicio h3 {
		font-size: 1.2em;
	}
	.portaServicios .servicio p {
		animation-delay: 0.9s;
	}
	
	#bio {
		width: calc(100% - 30px);
		margin: 60px auto 30px;
	padding:60px 0 0;
		flex-wrap: wrap;
	}
	#bio .side {
		width: 100%;
		padding: 0;
	}
	#bio .side h2 {
		font-size: 1.5em;
	}
	#bio .side p {
		margin: 12px 0;
	}
	#bio #barra {
		margin: 18px 0;
	}
	#bio .portaLogos img {
		height:60px;
	margin: 0 24px 0 0;
	}
	
	.premios {
		width: calc(100% - 30px);
	}
	.premios #linea {
		flex-wrap: wrap;
	}
	.premios div {
		width: 50%;
	}
	.premios div img {
		width: 42px;
		margin:18px auto 12px;
	}
	.premios div p {
		font-size: 0.7em;
		padding: 12px 0 24px;
	}
	
	#mapa {
		width: calc(100% - 30px);
		flex-wrap: wrap;
	}
	#mapa .sideMapa {
		width: 100%;
	}
	#mapa .sideMapa h1 {
		margin: 0 0 30px;
	}
#mapa .sideMapa .btn-mapa {
	width: 100%;
	background: var(--blanco);
	margin: 0 0 42px;
	padding:24px;
	border: solid 1px var(--blanco);
	border-radius: 24px;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	opacity: 0.7;
}
#mapa .sideMapa .btn-mapa.active,
#mapa .sideMapa .btn-mapa:hover {
	opacity: 1;
	box-shadow:        3px 3px 3px 0px rgba(0,0,0,0.3);
	-webkit-box-shadow:3px 3px 3px 0px rgba(0,0,0,0.3);
	-moz-box-shadow:   3px 3px 3px 0px rgba(0,0,0,0.3);
}
#mapa .sideMapa .btn-mapa.active {
	border-color: var(--azul);
}
#mapa .sideMapa .btn-mapa span {
	color: var(--azul);
	margin: 0 24px 0 0;
}
	#mapa .sideMapa .btn-mapa h2 {
		font-size: 1em;
	}
	#mapa .sideMapa .btn-mapa p {
		font-size: 0.7em;
	}
	#mapa .sideMapa iframe {
		width: 100%;
		height:360px;
	}
#mapa .sideMapa .btn {
	position: absolute;
	left:  9px;
	bottom:11px;
	z-index: 3;
}
	
	#enviado {
		margin: 66px 0 -45px;
		padding:24px 0;
	}
	#enviado div {
		width: calc(100% - 30px);
	}
	#enviado div h2 {
		font-size: 1.5em;
	}
	#enviado div p {
		font-size: 1em;
	}
	
	.portaAgendar {
		width: calc(100% - 30px);
		padding:72px 0 18px;
		flex-wrap: wrap;
	}
	.portaAgendar div.side {
		width: 100%;
	}
	.portaAgendar div.side:last-child {
		display: none;
	}
	.portaAgendar p {
		font-size: 1.5em;
	}
	.portaAgendar button {
		font-size: 1em;
	margin: 24px 0;
	}
	.portaAgendar img {
		width: calc(100% - 84px);
	}
	
	#portaForm .inter {
		width: calc(100% - 30px);
		flex-wrap: wrap;
	}
	form {
		padding:0;
	}
	#portaForm .inter .side {
		margin: 48px 0 24px;
}
	#portaForm .inter .side h2 {
		font-size: 1.5em;
		padding: 0 42px;
	}

	.fotos {
		width: calc(100% - 30px);
	}

	#porta-whats {
		width: calc(100% - 30px);
		bottom:9px;
	}
	.btn-whats {
		width: 48px;
		height:48px;
	}

	form {
		width: calc(100% - 30px);
		margin: 15px auto 18px;
	}
	
	.fotos {
		width: calc(100% - 30px);
		flex-wrap: wrap;
	}
	.fotos img {
		width: 100%;
	}
	.fotos img:nth-child(1) {
		border-bottom-left-radius: 0;
		border-bottom-right-radius:0;
	}
	.fotos img:nth-child(2) {
		border-top-left-radius: 0;
		border-top-right-radius:0;
	}
	
	footer .inter {
		width: calc(100% - 30px);
	}
	
	#fondo svg {
		width: 18%;
	}
	#fondo svg:nth-child(2),
	#fondo svg:nth-child(4) {
		fill: var(--gris);
	}
	
}