/* Custom Styles */
body {
    font-family: 'Titillium Web', sans-serif;
    line-height: 1.6;
}

.hero-section {
	/** background-image: url('imgs/banner-topo.jpg'); */
	background-color: #f6f1e7;
    background-size: cover;
    background-position: center;
    color: #000;
    padding: 100px 0;
}

.resize-text-hero {
	font-size: 2.4rem
}

.testimonial-card img {
	max-height: 800px;
	object-fit: cover;
	width: 100%;
}
.carousel-inner .row {
	margin: 0;
}
.carousel-control-prev,
.carousel-control-next {
	width: 5%;
}
.carousel-indicators {
	bottom: -50px;
}
.carousel-indicators button {
	background-color: #888;
}
.carousel-indicators .active {
	background-color: #000;
}

.swiper-pagination-bullet-active { background-color: #000 !important; }

@media (max-width: 768px) {
    .hero-section {
        /*background-image: url('imgs/banner-topo-mb.jpg');*/
        padding: 50px 0;
		
    }

	.resize-text-hero {
		font-size: 2rem
	}
	
	
}

.gradient-text {
    background: linear-gradient(45deg, #eb9479, #a24a2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.testimonial-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.backgroundcolor {
	background-color: #f5f5f5 !important;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(139deg, #eb9479 0%, #a24a2f 100%);
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: linear-gradient(139deg, #FFD700 0%, #FF1744 100%);
}

.footer {
	background-color: #f6f1e7;
    
}