/*
Theme Name: Martin Gomez
Theme URI: https://bellop.io
Version: 1.0
Author: bellop.io
Author URI: https://bellop.io
*/

:root,
[data-bs-theme=light]{

	/* Defaults */
	--header-min-height: 65px;	

	/* Colors */
	--bs-heading-color: inherit; /* H1, H2 colors */

    --bs-body-color: #151515;
    --bs-body-bg: #fff;

	--bs-primary: #fc3f50;
	--bs-primary-rgb: 252,63,80;
	--bs-secondary: #f58426;
	--bs-secondary-rgb: 245,132,38;

    --bs-white: #fff;
    --bs-light: #f2f6f8;

	--bs-black: #000;
    --bs-dark: #151515;
	--bs-gray: #cacaca;

	/* Links */
    --bs-link-color: #0d6efd;
    --bs-link-color-rgb: 13,110,253;
    --bs-link-decoration: underline;
    --bs-link-hover-color: #0a58ca;
    --bs-link-hover-color-rgb: 10,88,202;

    /* BS Borders */
    --bs-border-width: 1px;
/*    --bs-border-color: #fc3f50;*/
    --bs-border-radius: 50px;

    --swiper-preloader-color: #151515;

}



@media screen and (min-width:1200px){
	:root,
	[data-bs-theme=light]{
		--header-min-height: 90px;
		--header-fixed-min-height: 70px;
	}
}

/* Utilities */

.has-primary-color,
.text-primary{ 
	color: var(--bs-primary) !important; 
}

.has-secondary-color,
.text-secondary{ 
	color: var(--bs-secondary) !important; 
}

.has-primary-background-color,
.bg-primary{ 
	background: var(--bs-primary) !important; 
}

.has-secondary-background-color,
.bg-secondary{ 
	background: var(--bs-secondary) !important; 
}

.has-white-background-color,
.bg-white{
	background: var(--bs-white) !important; 
}

.has-dark-background-color,
.bg-dark{
	background: var(--bs-dark) !important; 
}

.has-black-background-color,
.bg-black{
	background: var(--bs-black) !important; 
}

.has-light-background-color,
.bg-light{
	background: var(--bs-light) !important;
}


/* 3. Structure */

html{
	scroll-behavior: smooth;
}

body{
  	font-size: clamp(16px, 1.5vw, 24px);
	font-weight: 300;
	font-family: "Lausanne", Helvetica, sans-serif;
	line-height: 1.1em;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

/*body.header-fixed{
	padding-top: var(--header-min-height);
}*/


a{
	color: inherit;
	text-decoration: none;
	transition: 0.3s all;
}

h1, h2, h3, h4, h5, h6{
	font-weight: 300;
}

h1 { font-size: clamp(16px, 1.5vw, 24px); }
h2 { font-size: clamp(16px, 1.5vw, 24px); }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }


b, strong {
    font-weight: 700;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

.ratio-4x3 {
	aspect-ratio: 4 / 3;	
}
.ratio-4x3 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 4. Structure > Framework */

.main {
	width: 100%;
	min-height: 80vh;
	overflow: hidden;
	padding-top: var(--header-min-height);
}

.container,
.container-fluid{
	width: 100%;
	max-width: 100%;
}


/*
[class^="col-"]{
	padding-left: 15px;
	padding-right: 15px;
}*/

@media screen and (min-width: 992px){
	.col-lg-5-2{
		-ms-flex: 0 0 20%;
	    flex: 0 0 20%;
	    max-width: 20%;
	}
}

@media screen and (min-width: 1440px){
	.container,
	.container-fluid{
		padding: 0 2%;
	}
}

/* Keyframes */

@keyframes dropDown{
    0% {
        transform: scaleY(0);
    }
    80% {
        transform: scaleY(1.1);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounce {
	0% {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
	}
	50% {
		transform: translate(0, -100%);
		-webkit-transform: translate(0, -100%);
		-moz-transform: translate(0, -100%);
	}
	100% {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
	}          
}

/* Structure > extras */

.wow{
	visibility: hidden;
}

.overh{
	overflow: hidden;
}

#pageloader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bs-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	transition: opacity 0.5s ease-in-out;
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
}
#pageloader.show{
	opacity: 1;
	pointer-events: all;
}

.grecaptcha-badge{
	opacity:0;
}


/* Components > buttons */

.btn{
	min-width: 150px;
	--bs-btn-padding-x: 30px;
	--bs-btn-padding-y: 10px;
	--bs-btn-font-weight: 500;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 6px;
}

@media screen and (max-width: 576px){
	.btn-block-mobile{
		width: 100%;
	}
}

.btn-primary{
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: var(--bs-light);
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
}
.btn-outline-primary{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-primary);
}

.btn-secondary{
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-secondary);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-secondary);
    --bs-btn-hover-border-color: var(--bs-secondary);

    --bs-btn-active-bg: var(--bs-light);
    --bs-btn-active-color: var(--bs-secondary);
    --bs-btn-active-border-color: var(--bs-secondary);
}
.btn-outline-secondary{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-secondary);
    --bs-btn-border-color: var(--bs-secondary);

    --bs-btn-hover-bg: var(--bs-secondary);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-secondary);

    --bs-btn-active-bg: var(--bs-secondary);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-secondary);
}


/* Btn Float */

.btn-float{
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 32px;
    text-align: center;
    z-index: 9999;
    border-radius: 50%;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
}

.btn-float-whatsapp{
    color: #fff;
    background: #25D366;
}
.btn-float-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

@media screen and (min-width:768px){
	.btn-float{
	    width: 70px;
	    height: 70px;
	    font-size: 40px;
	}
}

.btn-loading:before{
	content: '';
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
    -webkit-animation: spinner-border .75s linear infinite;
}


/* Structure */

.section{
	position: relative;
	padding: 50px 0;
}

@media screen and (min-width: 992px){
	.section{
		padding: 100px 0;
	}
}

/* Structure > Header */

.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);
	background: transparent;
	transition: 0.3s all;
	z-index: 999;
	font-size: clamp(16px, 2vw, 32px);
	padding-top: 25px;
}
.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
}

.header .logo,
.header .description,
.header .nav-menu{
	z-index: 999;
}

/* Header > Navigation */

.header .nav-menu {
	position: absolute;
	top: 25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 40px;
	cursor: pointer;
}
.header .nav-menu span { 
	display: block;
	transform-origin: center;
	transition: transform .3s, color 0.5s;
}

body.open-menu .header .nav-menu span,
.header .nav-menu.active span { transform: rotate(45deg);}

.header .navigation {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100dvh;
	margin: 0;
	text-align: center;
	font-size: 8vw;
	font-size: clamp(40px, 8vw, 350px);
	line-height: 1.1em;
	transition: opacity .3s, background 5s;    
}

body.open-menu .header .navigation {
	display: block;	
}

.header .navigation .container {
	position: relative;
	align-content: center;
	justify-content: center;
	height: 100%;
}
.header .navigation .menu .menu-studio,
.header .navigation .menu .lang-item{
	position: absolute;
	left: 2%;
	bottom: 0;
	font-size: clamp(16px, 2vw, 32px);
	line-height: 3em;
}

.header .navigation .menu .lang-item{
	left: auto;
	right: 2%;
}

body.open-menu .header .navigation li{
	filter: brightness(1);
}
/*.header .navigation li{
	transition: color 5s, filter .3s;
}*/


.header .navigation .menu li.current-menu-item a,
.header .navigation .menu li a:hover{
	color: #000 !important;
}

@media (max-width: 575.98px) {
  .header .description {
    font-size: 0;
  }

  .header .description::after {
    content: "Oficina de Arq.";
    font-size: 16px; 
  }
}



/* Components > Forms */

label{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
}
.bg-primary label,
.bg-dark label{
	color: var(--bs-white);
}

.required{
	color: #ff0000;
}

.form-select,
.form-control{
	line-height: 1.8em;
}

.form-select:focus,
.form-control:focus{
    box-shadow: none !important;
    border-color: var(--bs-dark);
}
textarea.form-control{
	border-radius: 15px;
}

/* Form checkbox */

.form-check{
	display: inline-block;
}

.form-check-input:focus{
	box-shadow: none;
}
.form-check-input:checked{
	background-color: var(--bs-dark);
	border-color: var(--bs-dark);
}

input[type="checkbox"] ~ label,
input[type="radio"] ~ label{
	margin: 0;
	font-weight: 400;
}

/* Form files */

.input-file-group{
	position: relative;
	display: block;
	padding: 30px 15px;
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	background-color: var(--bs-body-bg);
	border: var(--bs-border-width) dashed var(--bs-border-color);
	border-radius: 15px;
	cursor: pointer;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.input-file-group input{
	opacity: 0;
	width: 0;
}

.input-file-group .files{
	max-height: 100px;
	overflow: auto;
}
.input-file-group .files span{
	display: block;
	font-size: 12px;
	text-transform: uppercase;
}
.input-file-group:hover,
.input-file-group:focus{
	border-color: var(--bs-dark);
}

/* Forms > Show password */

.show_password{
	position: absolute;
	bottom: 0;
	right: 15px;
	padding: 15px;
}
.show_password.active,
.show_password:hover{
	color: #f58426;
}

/* Components > modals */

.modal{
	z-index: 99999;
}
.modal-backdrop{
	z-index: 9999;
}
.modal .modal-content{
	border: 0;
	border-radius: 0;
}

.modal .btn-close{
	position: absolute;
	top: -50px;
	right: 15px;
	width: 30px;
	height: 30px;
	padding: 0;
	background: url('assets/img/icons/icon-cross.svg') no-repeat center;
	background-size: contain;
	z-index: 10;
	opacity: 0.5;
}

@media screen and (min-width: 992px) {
	.modal .btn-close{
		top: 20px;
		right: -50px;
	}
}

#modalVideo .modal-content{
	background-color: #000;
}
#modalVideo .modal-body{
	padding: 0;
}
#modalVideo .btn-close{
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 30px;
	filter: brightness(0) invert(1);
}

/* Components > tables */

@media screen and (max-width: 767px){
	.table-responsive{
		white-space: nowrap;
		overflow: auto;
	}
	.table-responsive .table{
		white-space: normal;
	}
}


/* Components > Slider  */

.slider{
	position: relative;
}

/* Components > Slider > Swiper */

.slider.swiper:has(.swiper-pagination){
    padding-bottom: 60px;
}
.slider.swiper .swiper-pagination {
	bottom: 0;
}
.slider.swiper .swiper-pagination-bullet{
	background: var(--bs-primary);
	opacity: 0.3;
}
.slider.swiper .swiper-pagination-bullet-active {
	opacity: 1;
}

.slider.swiper .swiper-button-next,
.slider.swiper .swiper-button-prev{
	position: absolute;
	width: 45px;
	height: 45px;
    color: transparent;
    background-image: url('assets/img/icons/icon-arrow-prev.svg');
    background-repeat: no-repeat;
    background-position: center;
   	background-size: contain;
}
.slider.swiper .circle.swiper-button-next,
.slider.swiper .circle.swiper-button-prev{
	border: 1px solid var(--bs-dark);
	border-radius: 50%;
}
.slider.swiper .swiper-button-next { background-image: url('assets/img/icons/icon-arrow-next.svg'); }

.slider.swiper .swiper-button-prev:after,
.slider.swiper .swiper-button-next:after{
	content: none;
}



/* Components > Title */

/*.title{
	position: relative;
	margin-bottom: 30px;
}

.title h1,
.title h2,
.title h3,
.title h4,
.title h5{
	margin: 0;
}

.title h1{
	font-size: 30px;
}
.title h2{
	font-size: 36px;
}
.title h3{
	font-size: 32px;
}
.title h4{
	font-size: 22px;
}
.title h5{
	font-size: 20px;
}
.title span{
	color: var(--bs-primary);
}
.title p{
	margin: 0;
	margin-top: 8px;
}

.title .btn{
	margin-top: 20px;
}
.title .subtitle{
	margin: 0;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 15px;
}

.title .description {
	font-size: 17px;
}
.title.lined{
	padding-bottom: 15px;
	border-bottom: 1px solid #262626;
}
.title.max-width{
	max-width: 768px;
}
.title.max-width-lg{
	max-width: 992px;
}


.description{
	font-size: 1.5vw;
}
@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title h1{
		font-size: 70px;
	}
	.title h2{
		font-size: 48px;
	}
	.title h3{
		font-size: 42px;
	}
	.title h4{
		font-size: 24px;
	}
	.title h5{
		font-size: 22px;
	}
	.title p{
		margin-top: 12px;
	}

	.title .description {
		font-size: 19px;
	}
	.title .btn{
		margin-top: 50px;
	}

}*/

/* Components > Video Player */

.video-player{
	position: relative;
	width: 100%;
	padding: 25% 0;
	background: #000 no-repeat center;
	background-size: cover;
}
.video-player .play{
	display: none;
	position: absolute;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	width: 60px;
	height: 60px;
	font-size: 24px;
	line-height: 60px;
	text-align: center;
	background: var(--bs-primary);
	color: #fff;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
}
.video-player.active .play,
.video-player:hover .play{
	background: var(--bs-primary);
	color: #fff;
}
.video-player .play:hover{
	transform: scale(1.1);
}
.video-player .play i{
	margin-left: 4px;
}

.video-player.allowed{
	cursor: pointer;
}
.video-player.allowed .play{
	display: block;
}


/* Components > Pagination */

.pagination {
	justify-content: center;
	width: 100%;
	padding: 60px 0 0;
	text-align: center;
}
.pagination .screen-reader-text {
	display: none;
}
.pagination .page-numbers {
	display: inline-block;
	vertical-align: middle;
	padding: 6px 12px;
	font-size: 18px;
}
.pagination .page-numbers:hover{
	color: var(--bs-primary);
}
.pagination .page-numbers.current{
	font-weight: bold;
	color: var(--bs-primary);
}

@media screen and (min-width: 992px) {
	.pagination .page-numbers {
		font-size: 22px;
	}
}


/* Components > Share */

.share  {
	margin: 40px 0;
    padding: 20px 0;
    border-top: solid 1px #36373A;
    border-bottom: solid 1px #36373A;
}
.share ul {
	display: flex;
	align-items: center;
	margin: 0;
}
.share ul li a{
	display: block;
	padding: 8px;
	font-size: 26px;
	color: var(--bs-primary);
}
.share ul li a:hover{
	color: var(--bs-secondary);
}

@media screen and (min-width: 992px){
	.share ul li a{
		font-size: 32px;
	}
}

/* Components > Errors */

.errors {
	text-align: center;
	padding: 30px 0;
}
.errors.error-nologued {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60dvh;
}

.errors .smile {
	margin: 0;
	font-size: 50px;
	transform: rotate(90deg);
	color: var(--bs-primary);
}
@media screen and (min-width: 992px){
	.errors .smile {
		font-size: 80px;
	}
}



/*
	Modules
*/

/* Module > Presentation */

.presentation{
	position: relative;
	display: flex;
	align-items: center;
	height: calc(100vh - var(--header-min-height));
	min-height: 600px;
	padding: 30px 0;
	background: var(--bs-dark) no-repeat bottom;
	background-size: cover;
}

.presentation .arrow-down{
	display: block;
	position: absolute;
	left: calc(50% - 20px);
	bottom: 0;
	width: 40px;
	height: 60px;
	background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
	background-size: contain;
	animation: bounce 3s infinite;
	z-index: 3;
}

.presentation video{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
}


/*
	Pages
*/


/* Page > Home */

.page.home {

}

/* Page > About */

.page.about .title h1{
	opacity: 0;
}

/* Pages > Contact */
body:has(.page.contact){
	background: rgba(55, 70, 70, 0.9);
	color: #c9ecf7;
	
}
.page.contact .content{
	font-size: clamp(16px, 3.2vw, 98px);
	line-height: 1.1em;
	text-align: center;
	height: calc(100dvh - var(--header-min-height));
	align-content: center;
}
.page.contact .content a:hover{
	color: #000;
}


/* Pages > Thanks */

.page.page-thanks .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
}

/* Pages > Internal */

.page.internal .content .title{
	text-align: center;
}
.page.internal .content article {
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}

/* Pages > Page 404 */

.page.page-404 .content,
.page.page-maintenance .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
}

.page.page-maintenance .content{
	min-height: 100vh;
}


/*
	CPT Feed
*/

/* Feed > General */
.feed-projects.gx-5 {
	--bs-gutter-x: 10rem !important;
}
.feed-projects article{
	position: relative;
}

.feed-projects article .thumbnail{
	display: block;
}
.feed-projects article .data{
	display: flex;
	justify-content: space-between;
	padding: 1vw 2vw;
}

.feed-projects article:not(:has(img)) .thumbnail{
	aspect-ratio: 16 / 9;
	width: 100%;
	height: 100%;
	background: #cacaca;
}


/* Hover */
.feed-projects .item{
  opacity: 1;
  transition: opacity .6s ease;
}
.feed-projects:has(.thumbnail:hover) .item{
  opacity: .2;
}
.feed-projects .item:has(.thumbnail:hover){
  opacity: 1;
}

@media screen and (min-width: 768px){
	.feed-projects .item article .data{
	  opacity: 0;
	  transition: opacity .3s ease-out;
	}
	.feed-projects .item:hover article .data{
	  opacity: 1;
	}
}



/* Index */ 

.projects-header,
.project-item{
  display: grid;
  grid-template-columns: 3fr 2fr 1fr 1.5fr;
  align-items: center;
  font-size: clamp(16px, 2vw, 32px);
}

.projects-header {
	text-decoration: underline;
    text-underline-offset: 7px;
    text-decoration-thickness: 1px;
    margin-bottom: 35px;
}

.project-item .column{
  padding-right: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  padding: 8px 0;
}

.project-item{
	position: relative;
}

.project-item a{
  position: absolute;
  width: 100%;
  height: 100%;
  transform: 0;
  left: 0;
  inset: 0;
  z-index: 2;
}

.project-item:hover{
	color: rgb(249, 66, 0);
}


@media screen and (max-width: 576px){
	.projects-header{
		display: none
	}
	.project-item {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		border-bottom: solid 1px #000;
	}

	.project-item .project,
	.project-item .location {
		width: 50%
	}

	.project-item .column.type{
		display: none
	}
}

/* Single > Projects */
.single.projects .module-gallery .swiper-wrapper {
  justify-content: flex-start;
}
.single.projects .module-gallery .swiper {
  height: 40vh;
}

.single.projects .module-gallery .swiper-slide {
  width: auto;         
  height: 100%;
  display: flex;
  align-items: flex-start;
}
.single.projects .module-gallery .swiper-slide img{
  height: 100%;
  width: auto;
  object-fit: cover;
  background: #cacaca;
}

@media screen and (min-width: 992px){
	.single.projects .module-gallery .swiper {
	  height: 84vh;
	}

	.single.projects .module-gallery .swiper-slide {
		min-width: 300px;
	}

}


.single.projects .thumbnail img{
	height: 84vh;
	object-fit: cover;
}

.single.projects .thumbnail.video video{
	max-height: 86vh;
	object-fit: cover;
}


/* Structure > Footer */

.footer .widgets{
	padding: 50px 0;
	text-align: center;
}


/* Intro */
/*
.intro{
  bottom: 0;
  left: 0;
  width: 95%;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  z-index: 9999;
  transform: translateY(0);
  transition: transform 1s ease;
  padding: 2%;
  align-content: center;
  text-align: center;
}

.intro img{
	max-height: 100%;
}

*/
.intro {
  position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-min-height));
    height: 91%;
    z-index: 50;
    overflow: hidden;
    cursor: pointer;
    padding: 0 2%;
    transition: transform 1s ease;
}

.intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro.hide{
  transform: translateY(-120%);
}
