/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.2
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}

.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(../img/grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
}

/* Estilos do Instagram Feed */
#owl-instagram .owl-item {
    padding: 15px !important;
}

.instagram-item {
    background: #fff;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: auto !important;
    transition: transform 0.3s ease;
    margin: 10px !important;
}

.instagram-item:hover {
    transform: translateY(-5px);
}

.media-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100% !important;
    background: #f0f0f0;
    overflow: hidden;
}

.media-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
}

/* Ajustes do Owl Carousel */
#owl-instagram {
    padding: 10px 0;
    margin: 0 -15px;
}

#owl-instagram .owl-wrapper {
    display: flex !important;
    align-items: stretch;
}

#owl-instagram .owl-item {
    float: none;
    display: flex;
    height: auto;
}

/* Navegação do carousel */
.owl-buttons div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    color: #007965 !important;
    padding: 10px 15px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

.owl-buttons div:hover {
    background: #007965 !important;
    color: #fff !important;
}

/* ... código existente até a seção de paginação ... */

/* Estilo unificado para paginação */
.owl-pagination {
    text-align: center;
    padding-top: 5px;
    margin-top: -5px;
}

.owl-page {
    display: inline-block;
    margin: 0 3px !important;
}

.owl-page span {
    display: block;
    width: 6px !important;
    height: 6px !important;
    background: #ddd !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
}

.owl-page.active span {
    background: #007965 !important;
    transform: scale(1.1);
}

.owl-page:hover span {
    background: #007965 !important;
    opacity: 0.7;
}

/* Conteúdo do post */
.instagram-caption {
    padding: 12px 15px;
    font-size: 13px;
    line-height: 1.4;
    color: #333;
    max-height: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ... resto do código existente ... */

.instagram-meta {
    padding: 10px 15px;
    border-top: 1px solid #eee;
    background: #fafafa;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.instagram-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.instagram-meta i {
    margin-right: 5px;
    color: #007965;
}

.data_s {
    margin-left: auto;
    color: #999;
    font-size: 11px;
}