 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Albert Sans", sans-serif;
    text-decoration: none;
}

:root{
    --bg-primary: #F7F7F7;
    --primary-color: #FF5800;
    --secondary-color: #41494D;
    --white: #fff
}

body{
    background: var(--bg-primary);
    position: relative;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100dvh;
}


@keyframes backgroundPulse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 20px) scale(1.05); }
}

body.home img.logo{
    width: 100%;
    max-width: 314px;
    opacity: 0;
    animation: logoEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translateY(-150px) scale(0.5) rotate(-10deg);
    }
    60% {
        transform: translateY(10px) scale(1.05) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

.img_footer{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.img_footer_topo{
    position: absolute;
    top: -80px;
    right: 0;
}

.container{
    width: 100%;
    max-width:768px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index:2;
}

.content{
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.buttons{
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.button_primary,
.button_primary_form{
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid transparent;
    border-radius: 12px;
    width: 100%;
    max-width: 328px;
    margin: 0 auto;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    padding: 16px 24px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    opacity: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: buttonEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.button_primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.button_primary:hover::before {
    width: 300px;
    height: 300px;
}

.button_primary:nth-child(1) {
    animation-delay: 1s;
}

.button_primary:nth-child(2) {
    animation-delay: 1.2s;
}

.button_primary:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes buttonEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.button_primary:hover{
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 88, 0, 0.4);
    border-color: #FF5800;
}

.button_primary:active {
    transform: translateY(-2px) scale(0.98);
}

@media (max-width: 480px) {
    
    .button_primary {
        font-size: 16px;
        padding: 14px 48px;
    }
	
	img.logo,
	body.home img.logo{
		max-width:180px;
	}
	
}

@media (max-width:768px){
    .button_primary{
        padding: 12px 24px;
    }
}

.button_back{
    padding: 24px 0 0;
    display: flex;
}

.button_back a{
    border: 1px solid #41494D;
    border-radius: 8px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    color: var(--secondary-color);
    background: transparent;
    padding: 6px 18px;
}

.container_logo{
    width: 100%;
    max-width:380px;
    margin: 0 auto;
}

.container_logo img.logo{
    max-width: 160px;
}

.buttons .social_icons{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 328px;
    gap: 16px;
	margin: 24px auto 0;
}

body.page-id-32 .button_back{
	padding: 0;
}

.buttons .social_icons a{
    cursor: pointer;
}

.buttons .social_icons a:hover svg path{
    fill: var(--primary-color);
}

.buttons form{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.buttons form .input_group{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 328px;
    margin: 0 auto;
}

.buttons form .input_group label{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--primary-color);
}

.buttons form .input_group input{
    width: 100%;
    max-width: 328px;
    height: 54px;
    background: #FFFFFF;
    border: 1px solid #FFDECD;
    border-radius: 8px;
    outline: none;
    padding: 0 0 0 10px;
}

.buttons form .input_group input[type=submit]{
    padding: 0;
}


.buttons form .input_group input::placeholder{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: var(--secondary-color);
}

.buttons form .input_group input:focus{
    border: 1px solid var(--secondary-color);
}

.box_agent{
    width: 100%;
    border: 1px solid var(--primary-color);
    padding: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 580px;
    margin: 0 auto;
}

.box_agent .photo{
    width: 100%;
	max-width:160px;
    height: 160px;
    background: #D9D9D9;
    border-radius: 50%;
}

.box_agent .photo img{
	width: 100%;
    height: 100%;
    border-radius: 50%;
    object-position: center;
    object-fit: cover;
}

.box_agent .text{
	width:100%;
}

.box_agent h2{
    font-family: 'Albert Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 28px;
    color: #363C40;
}

.box_agent p{
    font-family: 'Albert Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: #41494D;
    margin: 8px 0 16px;
}

.box_agent a{
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
    max-width: 180px;
    border-radius: 4px;
    padding: 8px 24px;
    transition: all 0.3s;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
}
.box_agent a:hover{
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}


@media (max-width:480px){
    .box_agent .photo{
		width:100%;
        max-width: 120px;
        height: 120px;
    }
    .box_agent h2{
        font-size: 22px;
        line-height: 22px;
    }
    .box_agent p{
        font-size: 16px;
        line-height: 16px;
    }
    .box_agent a{
        font-size: 14px;
        line-height: 14px;
        max-width: 140px;
    }
}

@media (max-width:420px){
    .box_agent .photo{
		width:100%;
        max-width: 100px;
        height: 100px;
    }
    .box_agent h2{
        font-size: 18px;
        line-height: 18px;
    }
    .box_agent p{
        font-size: 14px;
        line-height: 14px;
    }
    .box_agent a{
        font-size: 10px;
        line-height: 12px;
        max-width: 140px;
    }
}

body.single_agent{
    height: auto;
}

body.single_agent .container_logo{
    padding: 80px 0 0;
}

body.single_agent .button_back{
    padding: 0 0 80px;
}

.agent_single{
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.agent_single .photo_single{
    padding: 12px 11px;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
}

.agent_single .photo_single .photo,
.agent_single .photo_single img{
    width: 100%;
    max-width: 580px;
    height: 480px;
    background: #41494D;
    border-radius: 8px;
}

.agent_single .photo_single img{
	object-fit: cover;
    border-radius: 8px;
    object-position: center;

}

.agent_single .info_single{
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    padding: 31px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.agent_single .info_single h1{
    font-style: normal;
    font-weight: 800;
    font-size: 28px;
    line-height: 32px;
    color: var(--primary-color);
    margin: 0 0 8px;
	text-transform:uppercase;
}

.agent_single .info_single p{
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    color: var(--secondary-color);
}
.agent_single .info_single .social_single{
    margin: 24px 0 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 328px;
    gap: 24px 0;
	flex-direction: column;

}

.agent_single .info_single .social_single a{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent_single .social_agent,
.agent_single .social_bestbuy{
	display:flex;
	gap:16px;
	justify-content:center;
}

.agent_single .title_social{
	font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: var(--primary-color);
}
@media (max-width:420px){
	 .agent_single .photo_single .photo, .agent_single .photo_single img {
        height: 280px;
    }
	.agent_single .info_single h1{
		 font-size: 23px;
    	line-height: 24px;
		text-align:center;
		margin: 0 0 12px;
	}
	.agent_single .info_single p{
		text-align:center;
	}
}

body.page-id-34,
body.single-agente,
body.page-id-30 {
	height:auto !important;
}

body.page-id-34 .container_logo,
body.single-agente .container_logo,
body.page-id-30  .container_logo{
	padding:80px 0 0;
}

body.page-id-34 .button_back,
body.single-agente .button_back,
body.page-id-30  .button_back{
	padding:0 0 80px;
}

body.page-id-30 .container_logo,
body.single-agente .container_logo{
	max-width:580px;
}


.wpcf7 form.sent .wpcf7-response-output {
    max-width: 328px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    border-color: var(--primary-color) !important;
}