:root {
	--color-primary: #5D7C00;
	/* Marron principal da logo */
	--color-marron: #734013;
	--secondary: #C1F2B3;
	/* Azul claro da logo */
	--accent: #ff6b6b;
	/* Destaque (mantido para CTAs) */
	--dark: #000;
	/* Texto escuro */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	text-decoration: none;
}

body {
	background-color: #FFF6EC!important;
	color: var(--dark);
	line-height: 1.6;
	position: relative;
	overflow-x: hidden;
}

body a:hover{
	color:unset;
    text-decoration:none;
}

h1,
h2,
h3,
h4 {
	text-decoration: none;
}

header {
	padding: 10px 0;
	box-shadow: 0px 4px 15.3px 0px #00000040;
    position:fixed;
    width:100%;
    top:0;
    z-index:100;
    background:#FFF6EC!important;
}

header .current_page_parent{
	border-bottom:1px solid var(--color-primary);
}

main{
	margin-top:120px;
}

main h2{
	font-size:2rem;
    font-weight:600;
    margin-bottom:3rem;
}

.wpcf7-submit{
    max-width:80px!important;
	width:fit-content!important;
}

.blog .wrapper-date-category{
	gap:10px;
}

#menu-main-menu {
	display: flex;
	justify-content: space-between;
	text-decoration: none;
	list-style-type: none;

}

#menu-main-menu li a {
	color:var(--dark);
	font-weight: 500;
}

#menu-main-menu li a:hover {
	font-weight: 700;
}

.sidebar--body ul{
	padding-left:0;
    list-style-type:unset!important;
}

/*first section*/

.banner img {
	width: 100%;
}

.section-first{
	margin-bottom:72px;
}

.section-first .text {
	gap: 1rem;
}

.text h1 {
	font-size: 2.5rem;
}

.text h1,
.text h2 {
	color:var(--dark);
}


.text h2 {
	font-size: 16px;
	font-weight: 400;
}

.text a {
	width: fit-content;
	color: #fff;
	background: var(--color-primary);
	font-weight: 700;
	padding: 7px 30px 12px;
	border-radius: 40px;
}

.text a:hover{
	color:#fff;
}

.about-us{
	gap:2rem;
}

/* Services Section */
.services {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 3rem 1rem;
   
}

.services .service-card{
	max-width:350px;
}

.seo-keywords h4{
	font-size:1rem;
}

.seo-keywords ul{
	padding-left:2rem;
}

#servicos h2{
	text-align:center;
}

#servicos .service-card {
    border: 1px solid;
    border-color: #F4DCC2 rgba(0, 0, 0, 0.2);
}

#servicos {
	padding: 5rem 1rem;
}

.pricing {
	padding: 5rem 0;
}

body .pricing .swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 36px !important;
}

.swiper-button-next,
.swiper-button-prev {
	display: none !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 30px !important;
}

.swiper-pagination-bullet-active {
	background: var(--color-marron) !important;
}


.service-card {
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 2rem;
	width: 100%;
	transition: transform 0.3s, box-shadow 0.3s;
	border-color: #F4DCC2 rgba(0, 0, 0, 0.2);
	text-align: center;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card img {
	width: 80px;
	height: 80px;
	margin-bottom: 1.5rem;
}

.swiper p {
	text-align: center;
	;
}

.service-card h3 {
	color: var(--logo-dark);
	margin-bottom: 1rem;
	font-size: 1.5rem;
	text-align: center;
}

.service-card ul {
	list-style-type: none;
	margin: 1.5rem 0;
}

.service-card li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
}

.service-card li:before {
	content: "✔";
	color: var(--secondary);
	font-weight: bold;
	display: inline-block;
	width: 1.5em;
	margin-left: -1.5em;
}

.service-card li:last-child {
	border-bottom: none;
}

.service-features {
	font-weight: bold;
	color: var(--logo-dark);
	margin-bottom: 1rem;
	text-align: center;
}

.swiper-slide {
	text-align: center;
}

.btn-primary {
	background-color: var(--color-marron) !important;
	color: #fff !important;
	border-color: var(--color-marron) !important;
}

.btn-primary:hover,
.btn-primary:active {
	background-color: var(--color-marron) !important;
	border-color: var(--color-marron) !important;
	color: #fff !important;
	box-shadow: unset !important;
}

/* Pricing Section */
.pricing {
	padding: 5rem 1rem !important;
	text-align: center;
}

.pricing h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: var(--logo-dark);
}

.pricing-card {
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 2rem;
	width: 100%;
	position: relative;
	border: 2px solid #eee;
	border-top: 4px solid var(--color-marron);
}

.pricing-card .btn-primary,
.pricing-card .btn-primary:hover,
.pricing-card .btn-primary:focus,
.pricing-card .btn-primary:active {
	background-color: var(--color-primary) !important;
	border-color: var(--color-primary) !important;
	box-shadow: unset !important;
	color: #fff !important;
}

.popular {
	border-color:var(--color-marron);
}

.popular-badge {
	position: absolute;
	top: -15px;
	right: 20px;
	background: #19400F;
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: bold;
}

.pricing-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #000;
}

.price {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--color-primary);
	margin: 1.5rem 0;
}

.price span {
	font-size: 1rem;
	color: var(--color-primary);
}

.pricing-card ul {
	list-style-type: none;
}

/* CTA Section */
.cta {
	background: linear-gradient(135deg, var(--logo-dark) 0%, var(--color-primary) 100%);
	color: white;
	padding: 4rem 1rem;
	text-align: center;
}

.cta h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
    color:#000;
}

#contato p{
	color:#000;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s;
	cursor: pointer;
	margin-top: 1rem;
}

.hero .btn-primary {
	background-color: #fff;
	color: #000;
	border: 2px solid #000;
}

.hero .btn-primary:hover {
	background-color: #000;
	color: #fff;
}

.hero .btn-primary:focus,
.home .hero .btn-primary:active,
.hero .btn-primary:hover {
	border-color: #000 !important;
	background-color: #000 !important;
}

.btn-outline {
	background-color:#fff;
	color: #000 !important;
	border: 2px solid #fff;
	margin: 0 10px;
}

.btn-outline:hover {
	background-color: #fff;
	color: var(--color-primary) !important;
}

.btn-outline:focus {
	box-shadow: unset !important;
	border-color: #000;
}

#contato {
	background-color:rgba(244, 220, 194, 1);
}

.botao-flutuante {
	position: fixed;
	right: 30px;
	bottom: 30px;
}

form input{
	padding: 0 15px;
    max-width:100%;
    width:100%;
}

textarea{
	padding:15px;
    max-width:100%;
    width:100%;
}

textarea, 
form input{
	border:none;
    border-radius:5px;
}

form input{
	height:35px;

}

.wpcf7-spinner {
	display: none !important;
    width:100%;
}

.wpcf7-form-control{
	cursor:pointer;
}

.wpcf7 form.sent .wpcf7-response-output{
	width: fit-content;
    margin: 0 auto 1rem;
    color: var(--color-primary);
}

#contato img{
	margin-bottom:3rem;
}

.copy, 
.copy-text, 
.text-copy{
	align-self: center;
    margin:0;
}

.desenvolvimento{
	gap:15px;
}

.logo-desenvolvimento{
	width:150px;
}

#wrapper-mobile{
	display:none;
}

#bg-transparent {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {

	.services{
		justify-content:center;
        align-items:center;
        gap:1rem;
	}

	.section-first, .about-us{
		flex-direction:column;
        gap:2rem;
	}

	body .section-first .text{
		justify-content:center!important;
		align-items: center;
	}

	.banner img{
		object-fit: cover;
	}

	button:focus{
		outline:none!important;
	}

	#wrapper-mobile img{
		width:119px;
	}

	#wrapper-mobile{
		display:block;
        padding:15px;
	}

	.contato a, .contato a:hover{
		color: #734013;
        font-weight:700;
	}

	.wrapper--menu button{
		border:unset;
	}

	body .header-desk{
		display:none!important;
	}

    .sidebar--menu.open {
        left: 0px;
    }

    .sidebar--menu {
        position: fixed;
        top: 0px;
        bottom: 0px;
        width: 82%;
        height: 100%;
        z-index: 3;
        left: -100%;
        overflow-y: scroll;
        background: rgb(255, 255, 255);
        transition: 0.4s;
    }

	.swiper {
		clip-path: inset(-5% 0% -5% 0%) !important;
	}


	#servicos .service-card {
		max-width: 100%;
	}

	.hero {
		background-image: url("/wp-content/uploads/2025/04/bannermobilerdm-1.png");
		height: 730px;

	}

	.hero h1 {
		font-size: 2rem;
	}

	
	.hero p {
		font-size: 1rem;
	}

	.btn-outline {
		display: block;
		margin: 10px auto;
		max-width: 200px;
	}

	#copyright, .sidebar--head{
		padding:15px;
	}

	#copyright .container > div{
		flex-direction:column;
	}

	.sidebar--head{
		border-bottom:1px solid #F4DCC2;
	}

	.copy{
		margin-bottom:15px;
	}

	.sidebar--body ul li{
		padding:15px;
	}

	.sidebar--body ul li a{
		color:#551F1D;
        font-weight:700;
	}
}