.location-card {
	max-width: 900px;
	width: 100%;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
	margin-bottom: 40px;	
}

.location-card:hover {
	transform: translateY(-5px);
}

.location-header {
	background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
	color: white;
	padding: 30px;
	position: relative;
	overflow: hidden;
}

.location-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.location-title {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

.location-title h1 {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-left: 15px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.location-icon {
	background: rgba(255, 255, 255, 0.2);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	backdrop-filter: blur(5px);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.address-container {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	padding: 20px;
	margin-top: 10px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	z-index: 1;
}

.address-line {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	font-size: 18px;
}

.address-line i {
	margin-right: 12px;
	width: 24px;
	text-align: center;
}

.map-container {
	position: relative;
}

.map-frame {
	width: 100%;
	height: 500px;
	border: none;
	display: block;
}

.map-overlay {
	position: absolute;
	bottom: 20px;
	right: 20px;
	background: white;
	padding: 12px 20px;
	border-radius: 50px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	font-weight: 600;
	color: #333;
	z-index: 10;
	transition: all 0.3s ease;
}

.map-overlay:hover {
	background: #ff4b2b;
	color: white;
	transform: scale(1.05);
}

.map-overlay i {
	margin-right: 8px;
	font-size: 18px;
}

@media (max-width: 768px) {
	.location-header {
		padding: 25px 20px;
	}
	
	.location-title h1 {
		font-size: 26px;
	}
	
	.location-icon {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
	
	.address-line {
		font-size: 16px;
	}
	
	.map-frame {
		height: 400px;
	}
	
	.map-overlay {
		bottom: 15px;
		right: 15px;
		padding: 10px 16px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.location-title {
		flex-direction: column;
		text-align: center;
	}
	
	.location-title h1 {
		margin-left: 0;
		margin-top: 10px;
		font-size: 22px;
	}
	
	.address-line {
		font-size: 15px;
	}
	
	.map-frame {
		height: 350px;
	}
}

/* Container principal */
.quadrogoogle-container {
    max-width: 1000px;
    width: 100%;
    padding: 20px;
}

/* Título principal */
.quadrogoogle-title {
    text-align: center;
    margin-bottom: 30px;
    color: #4285f4;
    font-size: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

/* Subtítulo */
.quadrogoogle-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #5f6368;
    font-size: 1.2rem;
}

/* Container dos slides */
.quadrogoogle-slides-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.2);
    background-color: white;
    height: 450px;
}

/* Slide individual */
.quadrogoogle-slide {
    display: none;
    padding: 40px;
    height: 100%;
    animation: quadrogoogle-fadeIn 0.8s ease;
}

/* Slide ativo */
.quadrogoogle-slide.quadrogoogle-active {
    display: flex;
    flex-direction: column;
}

/* Animação de fade in */
@keyframes quadrogoogle-fadeIn {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

/* Cabeçalho do comentário */
.quadrogoogle-comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

/* Logo do Google */
.quadrogoogle-logo {
    color: #4285f4;
    font-size: 2.5rem;
    margin-right: 15px;
}

/* Título do comentário */
.quadrogoogle-comment-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3c4043;
}

/* Cartão do comentário */
.quadrogoogle-comment-card {
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    flex-grow: 1;
    border-left: 5px solid #4285f4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Informações do usuário */
.quadrogoogle-user-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Avatar do usuário */
.quadrogoogle-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #5f6368;
    margin-right: 15px;
    overflow: hidden;
}

/* Imagem do avatar */
.quadrogoogle-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Detalhes do usuário */
.quadrogoogle-user-details {
    flex-grow: 1;
}

/* Nome do usuário */
.quadrogoogle-user-name {
    font-weight: 600;
    font-size: 1.3rem;
    color: #3c4043;
}

/* Avaliação por estrelas */
.quadrogoogle-user-rating {
    margin-top: 5px;
    color: #fbbc04;
}

/* Data do comentário */
.quadrogoogle-comment-date {
    color: #5f6368;
    font-size: 0.9rem;
}

/* Texto do comentário */
.quadrogoogle-comment-text {
    line-height: 1.6;
    font-size: 1.1rem;
    color: #202124;
    margin-bottom: 25px;
}

/* Rodapé do comentário */
.quadrogoogle-comment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #5f6368;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid #e8eaed;
}

/* Likes do comentário */
.quadrogoogle-likes {
    display: flex;
    align-items: center;
}

/* Ícone de likes */
.quadrogoogle-likes i {
    margin-right: 5px;
    color: #ea4335;
}

/* Controles de navegação */
.quadrogoogle-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Botão de navegação */
.quadrogoogle-nav-btn {
    background-color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4285f4;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Efeito hover nos botões de navegação */
.quadrogoogle-nav-btn:hover {
    background-color: #4285f4;
    color: white;
    transform: translateY(-3px);
}

/* Container dos dots de navegação */
.quadrogoogle-dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* Dot de navegação */
.quadrogoogle-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dadce0;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Dot ativo */
.quadrogoogle-dot.quadrogoogle-active {
    background-color: #4285f4;
    transform: scale(1.3);
}

/* Rodapé do quadro */
.quadrogoogle-footer {
    margin-top: 40px;
    text-align: center;
    color: #5f6368;
    font-size: 0.9rem;
}

/* Media Queries para responsividade */

/* Tablets */
@media (max-width: 768px) {
    .quadrogoogle-slides-container {
        height: 500px;
    }
    
    .quadrogoogle-slide {
        padding: 25px;
    }
    
    .quadrogoogle-comment-card {
        padding: 20px;
    }
    
    .quadrogoogle-title {
        font-size: 2rem;
    }
}

/* Celulares */
@media (max-width: 480px) {
    .quadrogoogle-slides-container {
        height: 550px;
    }
    
    .quadrogoogle-comment-header {
        flex-direction: column;
        text-align: center;
    }
    
    .quadrogoogle-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
