@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* ======== Newsletter Popup ========= */
section.popup-section {
	background-size: cover !important;
	overflow: hidden;
	background-attachment: fixed !important;
	background-position: center center !important;
	padding-top: 20px;
	padding-bottom: 20px;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 99;
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
section.popup-section.hide-popup{
	animation: fadeOut 1s ease-out forwards;
}
/* Define the fade-out keyframes */
@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		display: none;
	}
}
section.popup-section:before {
	content: '';
	overflow: hidden;
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 1;
	opacity: .8;
	background: #383632;
	-webkit-transition: opacity .3s ease-out;
	transition: opacity .3s ease-out;
	height: 100%;
	top: 0;
}

section.popup-section .inner-container {
	max-width: 1220px;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	height: 100%;
}
section.popup-section .inner-container  .row {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	flex-wrap: wrap;
	height: 100%;
}
.popup-inner {
	background: #fff;
	z-index: 9;
	width: 100%;
	max-width: 80%;
	-webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    border-radius: 10px; /* ← Bordes redondeados */
	box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
	animation: slideUp 1s ease-out;
}
/**/
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.popup-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sound-toggle {
  position: absolute;
  top: 5%;
  left: 90%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.sound-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
}

/**/
.popup-inner-column.bg-cover {
    padding: 0;
    height: 100%;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(100%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.popup-inner--row {
	display: flex;
	flex-wrap: wrap;
	position: relative;
    height: 50%;
}
.popup-inner-column {
	flex: 0 0 auto;
	width: 50%;
    
}
.bg-cover{
	background-size: cover;
	background-position: center center;
	position: relative;
	background-repeat: no-repeat !important;
	overflow: hidden;
}
form.popup-form {
	padding: 15% 8%;
}
.form-header p.form-subheading {
	margin: 0;
	color: #d51f0f;
	font-weight: 600;
	text-transform: uppercase;
	line-height: normal;
	font-style: normal;
	font-size: 15px;
	margin-bottom: 15px;
}
.form-header h2.form-heading {
	text-transform: uppercase;
	color: #383632;
	margin-top: 0px;
	margin-bottom: 20px;
	font-family: "Bebas Neue", sans-serif;
	font-size: 3.438rem;
	line-height: 3.2rem;
}
.form-fields .form-field{
	width: 100%;
	color: #8d8987;
	max-width: 100%;
	resize: none;
	outline: 0;
	font-size: 16px;
	border: 1px solid #e4e4e4;
	padding: 20px 28px;
	margin-bottom: 15px;
	border-radius: 4px;
}
.form-fields .submit-btn{
	width: 100%;
	background-color: #282725;
	color: #ffffff;
	text-decoration: none;
	font-size: 18px;
	padding: 20px 32px 20px;
	border-radius: 4px;
	font-family: "Bebas Neue", sans-serif;
	display: block;
	column-gap: 10px;
	overflow: hidden;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	text-align: center;
	cursor: pointer;
}
.form-fields .submit-btn:hover{
    background-color: #2DB742;
	-webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, .15);
	box-shadow: 0 8px 30px 0 rgba(0, 0, 0, .15);
	-webkit-transform: translate3d(0, -2px, 0);
	transform: translate3d(0, -2px, 0);
}
span.close-popup--btn {
    color: #000000;
	height: 40px;
	width: 40px;
	position: absolute;
	right: 20px;
	top: 20px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	cursor: pointer;
}
/* ======== Sticky Footer ========= */
  .sticky-footer{
       position: fixed;
    width: 100%;
        background: #333;
    z-index: 99;
    bottom: 0;
  }
.sticky-footer .footer-row{
      display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    padding-right: 15px;
}
.creditd a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
        font-size: 16px;
}
.social ul{
      display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0px;
    column-gap: 10px;
    align-items: center;
}
.social ul li a{
     display: flex;
    background: #fff;
    height: 30px;
    width: 30px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
}
.social ul li a img{
       max-width: 20px;
}

/* RESPONSIVE IPAD  */
@media only screen and (max-width: 981px) {
.popup-inner-column {
    flex: 0 0 auto;
    width: 100%;
}
.bg-cover{
	    height: 400px;
}
form.popup-form {
    padding: 8% 5%;
}
span.close-popup--btn{
	    right: 10px;
    top: 10px;
}
}

/* RESPONSIVE Iphone */
@media only screen and (max-width: 480px) {
.popup-inner{
	max-width: 100%;
}
.bg-cover {
        height: 300px;
    }
    .form-header h2.form-heading{
    	font-size: 2.438rem;
    line-height: 2.4rem;
    }
    .header-column a{
    	font-size: 20px;
    }
    .popup-video {
        margin-top: 3%;
        margin-left: 20%;
    width: 60%;
    object-fit: cover;
    display: block;
}
.sound-toggle {
  top: 8%;
  left: 73%;
font-size: 18Px;
  padding: 6px 10px;
  border-radius: 50%;}
}
/*vendida o alquilada*/
.img__wrapper{
  position:absolute;
}
.img__wrapper img{
  width: 100%;
}
.sold_out {
    top: 5.4em;
    left: -3.5em;
	width: 380px;
    color: #fff;
    display: block;
    position:absolute;
    text-align: center;
    text-decoration: none;
    letter-spacing: .06em;
    background-color: #1e2846;
    padding: 0.5em 5em 0.4em 5em;
    text-shadow: 0 0 0.75em #444;
    box-shadow: 0 0 0.5em rgba(0,0,0,0.5);
    font: bold 16px/1.2em Arial, Sans-Serif;
    -webkit-text-shadow: 0 0 0.75em #444;
    -webkit-box-shadow: 0 0 0.5em rgba(0,0,0,0.5);
    -webkit-transform: rotate(-40deg) scale(0.75,1);
    z-index:10;
	border-radius: 30px;
}
.sold_out:before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    margin: -0.3em -5em;
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    border: 2px rgba(255,255,255,0.7) dashed;
}