
		/* Compensar header fixo */
		body {
			padding-top: 52px !important;
		}
		/* Header fixo com botão de assistente */
		.soberano-assistant-header {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			z-index: 9999;
			background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
			color: #fff;
			padding: 8px 0;
			box-shadow: 0 4px 20px rgba(0,0,0,0.25);
			font-family: 'Poppins', 'Montserrat', sans-serif;
		}
		.soberano-assistant-inner {
			max-width: 1200px;
			margin: 0 auto;
			padding: 0 16px;
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 12px;
			flex-wrap: wrap;
		}
		.soberano-assistant-brand {
			display: flex;
			align-items: center;
			gap: 10px;
			font-size: 14px;
			line-height: 1.3;
		}
		.soberano-assistant-icon {
			width: 22px;
			height: 22px;
			color: #a90707;
			flex-shrink: 0;
		}
		.soberano-assistant-text strong {
			color: #d4af37;
		}
		.soberano-assistant-btn {
			background: linear-gradient(135deg, #a90707 0%, #7a0505 100%);
			color: #fff;
			border: none;
			border-radius: 50px;
			padding: 10px 18px;
			font-size: 13px;
			font-weight: 600;
			cursor: pointer;
			display: inline-flex;
			align-items: center;
			gap: 8px;
			transition: all 0.25s ease;
			box-shadow: 0 4px 12px rgba(169,7,7,0.35);
			white-space: nowrap;
		}
		.soberano-assistant-btn:hover,
		.soberano-assistant-btn:focus {
			background: linear-gradient(135deg, #c50909 0%, #900707 100%);
			transform: translateY(-2px);
			box-shadow: 0 6px 16px rgba(169,7,7,0.45);
			outline: none;
		}
		.soberano-assistant-btn-icon {
			width: 18px;
			height: 18px;
		}
		@media (max-width: 767px) {
			.soberano-assistant-header {
				padding: 6px 0;
			}
			.soberano-assistant-inner {
				justify-content: center;
				padding: 0 10px;
			}
			.soberano-assistant-text {
				font-size: 12px;
			}
			.soberano-assistant-btn {
				padding: 8px 14px;
				font-size: 12px;
			}
			.soberano-assistant-btn-text {
				display: none;
			}
			.soberano-assistant-btn-icon {
				width: 20px;
				height: 20px;
			}
		}

		/* Chat flutuante */
		.soberano-chat {
			position: fixed;
			bottom: 100px;
			right: 20px;
			width: 380px;
			max-width: calc(100vw - 40px);
			max-height: 70vh;
			background: #fff;
			border-radius: 20px;
			box-shadow: 0 20px 60px rgba(0,0,0,0.3);
			z-index: 10000;
			display: flex;
			flex-direction: column;
			overflow: hidden;
			transform: scale(0.95) translateY(20px);
			opacity: 0;
			visibility: hidden;
			transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
			font-family: 'Poppins', 'Montserrat', sans-serif;
		}
		.soberano-chat.open {
			transform: scale(1) translateY(0);
			opacity: 1;
			visibility: visible;
		}
		.soberano-chat-header {
			background: linear-gradient(135deg, #a90707 0%, #7a0505 100%);
			color: #fff;
			padding: 16px 20px;
			display: flex;
			align-items: center;
			justify-content: space-between;
		}
		.soberano-chat-title {
			display: flex;
			align-items: center;
			gap: 10px;
			font-weight: 600;
			font-size: 15px;
		}
		.soberano-chat-title-icon {
			width: 22px;
			height: 22px;
		}
		.soberano-chat-close {
			background: none;
			border: none;
			color: #fff;
			font-size: 28px;
			line-height: 1;
			cursor: pointer;
			padding: 0 4px;
		}
		.soberano-chat-body {
			flex: 1;
			padding: 16px;
			overflow-y: auto;
			background: #f8f8f8;
			display: flex;
			flex-direction: column;
			gap: 12px;
		}
		.soberano-chat-msg {
			display: flex;
		}
		.soberano-chat-bot {
			justify-content: flex-start;
		}
		.soberano-chat-user {
			justify-content: flex-end;
		}
		.soberano-chat-bubble {
			max-width: 85%;
			padding: 12px 16px;
			border-radius: 18px;
			font-size: 14px;
			line-height: 1.5;
			word-wrap: break-word;
		}
		.soberano-chat-bot .soberano-chat-bubble {
			background: #fff;
			color: #333;
			border-bottom-left-radius: 4px;
			box-shadow: 0 2px 8px rgba(0,0,0,0.06);
		}
		.soberano-chat-user .soberano-chat-bubble {
			background: linear-gradient(135deg, #a90707 0%, #7a0505 100%);
			color: #fff;
			border-bottom-right-radius: 4px;
		}
		.soberano-chat-options {
			display: flex;
			flex-wrap: wrap;
			gap: 8px;
			margin-top: 4px;
		}
		.soberano-chat-chip {
			background: #fff;
			border: 1px solid #d4af37;
			color: #7a0505;
			border-radius: 50px;
			padding: 8px 14px;
			font-size: 12px;
			font-weight: 600;
			cursor: pointer;
			transition: all 0.2s;
		}
		.soberano-chat-chip:hover {
			background: #d4af37;
			color: #fff;
		}
		.soberano-chat-footer {
			display: flex;
			align-items: center;
			gap: 8px;
			padding: 12px 16px;
			background: #fff;
			border-top: 1px solid #eee;
		}
		.soberano-chat-input {
			flex: 1;
			border: 1px solid #ddd;
			border-radius: 50px;
			padding: 10px 16px;
			font-size: 14px;
			outline: none;
		}
		.soberano-chat-input:focus {
			border-color: #a90707;
		}
		.soberano-chat-send {
			width: 40px;
			height: 40px;
			border-radius: 50%;
			border: none;
			background: linear-gradient(135deg, #a90707 0%, #7a0505 100%);
			color: #fff;
			display: flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			flex-shrink: 0;
			transition: transform 0.2s;
		}
		.soberano-chat-send:hover {
			transform: scale(1.05);
		}
		.soberano-chat-send svg {
			width: 18px;
			height: 18px;
		}
		.soberano-chat-overlay {
			position: fixed;
			inset: 0;
			background: rgba(0,0,0,0.45);
			z-index: 9998;
			opacity: 0;
			visibility: hidden;
			transition: all 0.3s;
		}
		.soberano-chat-overlay.open {
			opacity: 1;
			visibility: visible;
		}
		@media (max-width: 480px) {
			.soberano-chat {
				bottom: 0;
				right: 0;
				left: 0;
				width: 100%;
				max-width: 100%;
				border-radius: 20px 20px 0 0;
				max-height: 85vh;
			}
		}

		/* FAQ Section */
		.soberano-faq-section {
			background: #111111 !important;
			color: #ffffff !important;
			padding: 60px 0;
		}
		.soberano-faq-section * {
			color: inherit !important;
		}
		.soberano-faq-section a:not(.soberano-faq-cta-btn) {
			color: #ffd700 !important;
		}
		.soberano-faq-section .soberano-faq-cta-btn,
		.soberano-faq-section .soberano-faq-cta-btn * {
			color: #ffffff !important;
		}
		.soberano-faq-header {
			text-align: center;
			max-width: 800px;
			margin: 0 auto 32px;
			padding: 0 16px;
			font-family: 'Poppins', 'Montserrat', sans-serif;
		}
		.soberano-faq-title {
			font-size: 28px;
			font-weight: 700;
			color: #1a1a1a !important;
			margin: 0 0 12px;
			line-height: 1.2;
		}
		.soberano-faq-subtitle {
			font-size: 16px;
			color: #444 !important;
			margin: 0;
			line-height: 1.5;
		}
		.soberano-faq-subtitle a {
			color: #a90707 !important;
			font-weight: 600;
			text-decoration: underline;
		}
		.soberano-faq-tabs {
			display: flex;
			justify-content: center;
			gap: 12px;
			margin-bottom: 28px;
			padding: 0 16px;
			flex-wrap: wrap;
		}
		.soberano-faq-tab {
			background: #ffffff !important;
			border: 2px solid #d4af37 !important;
			color: #000000 !important;
			border-radius: 50px;
			padding: 12px 28px;
			font-size: 15px;
			font-weight: 600;
			cursor: pointer;
			transition: all 0.25s;
			font-family: 'Poppins', 'Montserrat', sans-serif;
		}
		.soberano-faq-tab.active,
		.soberano-faq-tab:hover {
			background: linear-gradient(135deg, #a90707 0%, #7a0505 100%) !important;
			color: #ffffff !important;
			border-color: #a90707 !important;
		}
		.soberano-faq-panel {
			display: none;
			max-width: 900px;
			margin: 0 auto;
			padding: 0 16px;
			animation: fadeIn 0.3s ease;
		}
		.soberano-faq-panel.active {
			display: block;
		}
		@keyframes fadeIn {
			from { opacity: 0; transform: translateY(8px); }
			to { opacity: 1; transform: translateY(0); }
		}
		.soberano-faq-group-title {
			font-size: 20px;
			font-weight: 700;
			color: #1a1a1a !important;
			margin: 0 0 20px;
			font-family: 'Poppins', 'Montserrat', sans-serif;
		}
		.soberano-faq-item {
			background: #1a1a1a !important;
			border: 1px solid #333;
			border-radius: 14px;
			margin-bottom: 14px;
			box-shadow: 0 2px 12px rgba(0,0,0,0.3);
			overflow: hidden;
			font-family: 'Poppins', 'Montserrat', sans-serif;
		}
		.soberano-faq-item summary {
			list-style: none;
			padding: 18px 20px;
			font-size: 16px;
			font-weight: 600;
			color: #1a1a1a !important;
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 16px;
			user-select: none;
		}
		.soberano-faq-item summary::-webkit-details-marker {
			display: none;
		}
		.soberano-faq-icon {
			width: 24px;
			height: 24px;
			flex-shrink: 0;
			position: relative;
		}
		.soberano-faq-icon::before,
		.soberano-faq-icon::after {
			content: '';
			position: absolute;
			background: #ffd700;
			transition: all 0.25s;
		}
		.soberano-faq-icon::before {
			width: 14px;
			height: 2px;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
		}
		.soberano-faq-icon::after {
			width: 2px;
			height: 14px;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
		}
		.soberano-faq-item[open] .soberano-faq-icon::after {
			transform: translate(-50%, -50%) rotate(90deg);
			opacity: 0;
		}
		.soberano-faq-answer {
			padding: 0 20px 18px;
			font-size: 15px;
			line-height: 1.7;
			color: #444 !important;
		}
		.soberano-faq-answer a {
			color: #a90707 !important;
			font-weight: 600;
			text-decoration: underline;
		}
		.soberano-faq-cta {
			text-align: center;
			margin-top: 36px;
			padding: 0 16px;
		}
		.soberano-faq-cta-btn {
			display: inline-flex;
			align-items: center;
			gap: 10px;
			background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
			color: #fff;
			font-size: 16px;
			font-weight: 700;
			padding: 16px 28px;
			border-radius: 50px;
			text-decoration: none;
			box-shadow: 0 8px 24px rgba(37,211,102,0.35);
			transition: transform 0.25s;
		}
		.soberano-faq-cta-btn:hover {
			transform: translateY(-3px);
		}
		.soberano-faq-cta-btn svg {
			width: 22px;
			height: 22px;
		}
		@media (max-width: 767px) {
			.soberano-faq-section {
				padding: 40px 0;
			}
			.soberano-faq-title {
				font-size: 22px;
			}
			.soberano-faq-subtitle {
				font-size: 14px;
			}
			.soberano-faq-tab {
				padding: 10px 20px;
				font-size: 14px;
			}
			.soberano-faq-item summary {
				padding: 14px 16px;
				font-size: 14px;
			}
			.soberano-faq-answer {
				padding: 0 16px 14px;
				font-size: 14px;
			}
			.soberano-faq-cta-btn {
				font-size: 14px;
				padding: 14px 22px;
				width: 100%;
				justify-content: center;
			}
		}

		/* Melhorias mobile gerais */
		@media (max-width: 767px) {
			body {
				padding-top: 56px !important;
			}
			.elementor-heading-title {
				font-size: clamp(20px, 6vw, 32px) !important;
				line-height: 1.25 !important;
			}
			.elementor-button {
				min-height: 48px;
				font-size: 14px !important;
				padding: 12px 20px !important;
			}
			.elementor-icon-list-item {
				font-size: 14px !important;
			}
			.elementor-video {
				max-width: 100%;
				height: auto;
			}
			.swiper-slide img {
				object-fit: cover;
				width: 100%;
				height: auto;
			}
			iframe[src*="maps.google.com"] {
				width: 100% !important;
				height: 250px !important;
			}
		}
		@media (max-width: 480px) {
			body {
				padding-top: 52px !important;
			}
		}
	
/* ===== Footer Soberano ===== */
.soberano-footer {
    --display: flex;
    --flex-direction: column;
    --padding-top: 0px;
    --padding-bottom: 0px;
}
.soberano-footer .e-con-inner {
    max-width: 1200px !important;
    width: 100% !important;
    padding: 60px 20px 24px;
    flex-direction: column;
    gap: 40px;
}
.soberano-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 48px;
    align-items: start;
    width: 100%;
}
.soberano-footer-logo {
    max-width: 210px;
    height: auto;
    margin-bottom: 18px;
}
.soberano-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #f5f0e0;
    margin: 0 0 20px;
    opacity: .9;
}
.soberano-footer-social {
    display: flex;
    gap: 12px;
}
.soberano-footer-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}
.soberano-footer-social-icon svg {
    width: 18px;
    height: 18px;
}
.soberano-footer-social-icon:hover {
    background: #d4af37;
    color: #16181d;
    transform: translateY(-3px);
}
.soberano-footer-title {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 10px;
}
.soberano-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: #d4af37;
    border-radius: 2px;
}
.soberano-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.soberano-footer-links a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #f5f0e0;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.5;
    transition: color .2s ease;
}
.soberano-footer-links a svg {
    width: 15px;
    height: 15px;
    color: #d4af37;
    flex-shrink: 0;
    margin-top: 3px;
}
.soberano-footer-links a:hover {
    color: #d4af37;
}
.soberano-footer-legal {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 24px;
    text-align: center;
}
.soberano-footer-legal p {
    margin: 4px 0;
    font-size: 13px;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
}
@media (max-width: 900px) {
    .soberano-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .soberano-footer .e-con-inner {
        padding: 44px 20px 24px;
    }
}

.soberano-footer {
    background: linear-gradient(135deg, #0c0e13 0%, #16181d 60%, #1d1f26 100%) !important;
    border-top: 3px solid #d4af37;
}

/* ===== Galeria em Carrossel ===== */
.soberano-gallery {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.soberano-gallery-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 6px 4px 10px;
    overflow: hidden;
}
.soberano-gallery-carousel .swiper-wrapper {
    align-items: stretch;
}
.soberano-gallery-carousel .swiper-slide {
    height: auto;
    max-width: 100%;
}
.soberano-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    width: 100%;
    height: 100%;
    background: #111;
    cursor: zoom-in;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .25);
    transition: box-shadow .35s ease;
}
.soberano-gallery-item:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}
.soberano-gallery-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.soberano-gallery-item:hover .soberano-gallery-media {
    transform: scale(1.05);
}
.soberano-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .65) 100%);
    opacity: 0;
    transition: opacity .3s ease;
}
.soberano-gallery-item:hover .soberano-gallery-overlay {
    opacity: 1;
}
.soberano-gallery-zoom,
.soberano-gallery-play {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, .92);
    color: #16181d;
    transform: scale(.6);
    opacity: 0;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), opacity .3s ease;
}
.soberano-gallery-play {
    background: rgba(169, 7, 7, .92);
    color: #fff;
}
.soberano-gallery-item:hover .soberano-gallery-zoom,
.soberano-gallery-item:hover .soberano-gallery-play {
    transform: scale(1);
    opacity: 1;
}
.soberano-gallery-zoom svg,
.soberano-gallery-play svg {
    width: 22px;
    height: 22px;
}
.soberano-gallery-item.is-video .soberano-gallery-media {
    cursor: pointer;
}
.soberano-gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 22px;
}
.soberano-gallery-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, .45);
    background: transparent;
    color: #d4af37;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}
.soberano-gallery-nav-btn svg {
    width: 17px;
    height: 17px;
}
.soberano-gallery-nav-btn:hover {
    background: #d4af37;
    color: #16181d;
    transform: scale(1.08);
}
.soberano-gallery-pagination {
    display: flex;
    gap: 7px;
}
.soberano-gallery-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    opacity: 1;
    transition: all .25s ease;
}
.soberano-gallery-pagination .swiper-pagination-bullet-active {
    background: #d4af37;
    width: 26px;
    border-radius: 6px;
}
@media (max-width: 480px) {
    .soberano-gallery-item { border-radius: 12px; }
}

/* ===== Lightbox ===== */
.soberano-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.soberano-lightbox.open {
    opacity: 1;
    visibility: visible;
}
.soberano-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(6px);
}
.soberano-lightbox-stage {
    position: relative;
    max-width: 92vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transform: scale(.94);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}
.soberano-lightbox.open .soberano-lightbox-stage {
    transform: scale(1);
}
.soberano-lightbox-content {
    max-width: 92vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
    background: #0a0a0a;
}
.soberano-lightbox-img,
.soberano-lightbox-video {
    max-width: 92vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: none;
}
.soberano-lightbox-video {
    width: min(92vw, 1100px);
    aspect-ratio: 16 / 9;
    background: #000;
}
.soberano-lightbox-caption {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    max-width: 80vw;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
    font-family: 'Poppins', 'Montserrat', sans-serif;
}
.soberano-lightbox-count {
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}
.soberano-lightbox-close,
.soberano-lightbox-prev,
.soberano-lightbox-next {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    transition: all .2s ease;
    z-index: 2;
}
.soberano-lightbox-close:hover,
.soberano-lightbox-prev:hover,
.soberano-lightbox-next:hover {
    background: rgba(212, 175, 55, .9);
    color: #16181d;
    transform: scale(1.08);
}
.soberano-lightbox-close svg,
.soberano-lightbox-prev svg,
.soberano-lightbox-next svg {
    width: 20px;
    height: 20px;
}
.soberano-lightbox-close {
    top: -16px;
    right: -16px;
    background: rgba(169, 7, 7, .9);
}
.soberano-lightbox-prev {
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
}
.soberano-lightbox-next {
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
}
.soberano-lightbox-prev:hover,
.soberano-lightbox-next:hover {
    transform: translateY(-50%) scale(1.08);
}
@media (max-width: 900px) {
    .soberano-lightbox-prev { left: 6px; top: auto; bottom: -6px; transform: none; }
    .soberano-lightbox-next { right: 6px; top: auto; bottom: -6px; transform: none; }
    .soberano-lightbox-prev:hover,
    .soberano-lightbox-next:hover { transform: scale(1.08); }
    .soberano-lightbox-close { top: -12px; right: -6px; }
}
