/* Estilos globais compartilhados */

/* Containers ocupando 90% da tela em desktop (5% de margem em cada lado) */
@media (min-width: 992px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl,
    .container-fluid,
    .page-container {
        margin-left: 5%;
        margin-right: 5%;
        width: auto;
        max-width: 90%;
    }
}

:root {
    --primary-orange: #ff8000;
    --primary-gray: #6B7280;
    --secondary-gray: #9CA3AF;
    --light-gray: #F9FAFB;
    --primary-blue: #2563eb;
}

::-webkit-scrollbar { 
    display: none;
}

body { 
    font-family: 'Inter', sans-serif; 
}

.accordion-content { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.3s ease; 
}

.accordion-content.active { 
    max-height: 500px; 
}

/* Cores customizadas */
.text-primary-orange-custom {
    color: var(--primary-orange) !important;
}

.text-primary-gray-custom {
    color: var(--primary-gray) !important;
}

.text-primary-blue-custom {
    color: var(--primary-blue) !important;
}

.text-secondary-gray-custom {
    color: var(--secondary-gray) !important;
}

.bg-primary-orange-custom {
    background-color: var(--primary-orange) !important;
}

.bg-hero-gradient {
    background: linear-gradient(to bottom right, #f3f4f6, #ffffff, #f9fafb);
}

.border-bottom-custom {
    border-bottom: 1px solid rgba(156, 163, 175, 0.2) !important;
}

.border-primary-orange-opacity {
    border-color: rgba(255, 128, 0, 0.3) !important;
}

.hover-primary-orange-custom:hover {
    color: var(--primary-orange) !important;
}

.hover-primary-blue-custom:hover {
    color: var(--primary-blue) !important;
}

.hover-scale-custom:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.hover-shadow-lg-custom:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.hover-shadow-xl-custom:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.btn-primary-orange-custom {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

.btn-primary-orange-custom:hover {
    background-color: #e67300;
    border-color: #e67300;
    color: white;
}

.btn-primary-gray-custom {
    background-color: var(--primary-gray);
    border-color: var(--primary-gray);
    color: white;
}

.btn-primary-gray-custom:hover {
    background-color: #4b5563;
    border-color: #4b5563;
    color: white;
}

.btn-outline-primary-orange-custom {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    background-color: transparent;
}

.btn-outline-primary-orange-custom:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

.hover-bg-primary-orange-custom:hover {
    background-color: var(--primary-orange) !important;
}

.hover-text-white-custom:hover {
    color: white !important;
}

.header-logo {
    height: 56px;
    width: auto;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1051;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-body {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}

.mobile-menu-link {
    transition: all 0.2s ease;
}

.mobile-menu-link:hover {
    color: var(--primary-orange) !important;
    background-color: rgba(255, 128, 0, 0.05);
}

.mobile-menu-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-dropdown.active {
    max-height: 500px;
}

.mobile-menu-toggle-btn {
    transition: all 0.2s ease;
}

.mobile-menu-toggle-btn:hover {
    background-color: rgba(107, 114, 128, 0.05);
}

.mobile-menu-toggle-btn.active i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Dropdown Menu Styles */
.dropdown-menu-wrapper {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(-10px);
    z-index: 1000;
}

.dropdown-menu-wrapper:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item-wrapper {
    position: relative;
}

.dropdown-item-custom {
    display: block;
    padding: 10px 20px;
    color: var(--primary-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item-custom:hover {
    color: var(--primary-orange);
    background-color: rgba(255, 128, 0, 0.05);
}

.dropdown-item-wrapper:hover > .dropdown-item-custom {
    color: var(--primary-orange);
}

/* Submenu (segundo nível) */
.dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 8px 0;
    margin-left: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-10px);
    z-index: 1001;
}

.dropdown-item-wrapper:hover > .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-subitem {
    display: block;
    padding: 8px 20px;
    color: var(--primary-gray);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.dropdown-subitem:hover {
    color: var(--primary-orange);
    background-color: rgba(255, 128, 0, 0.05);
}

/* Seta indicadora para itens com submenu */
.dropdown-item-wrapper > .dropdown-item-custom::after {
    content: '›';
    position: absolute;
    right: 15px;
    color: var(--primary-gray);
    font-size: 18px;
    transition: color 0.2s ease;
}

.dropdown-item-wrapper:hover > .dropdown-item-custom::after {
    color: var(--primary-orange);
}

.letter-spacing-wider {
    letter-spacing: 0.1em;
}

/* Partners Carousel Styles */
.partners-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.partners-carousel {
    animation: scroll-partners 20s linear infinite;
    width: max-content;
}

.partners-carousel:hover {
    animation-play-state: paused;
}

.partner-logo-item {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo-item:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 5 - 3rem * 5));
    }
}

/* Material Filter Styles */
.material-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.material-item.hidden {
    display: none;
}

.material-filter-btn.active {
    background-color: var(--primary-gray) !important;
    color: white !important;
}

.lh-tight {
    line-height: 1.25;
}

.lh-relaxed {
    line-height: 1.75;
}

.hero-image-container {
    height: 300px;
}

@media (min-width: 768px) {
    .hero-image-container {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .hero-image-container {
        height: 600px;
    }
}

.object-cover {
    object-fit: cover;
}

.rounded-4 {
    border-radius: 1rem;
}

.w-50 {
    width: 3rem;
    height: 3rem;
}

.h-50 {
    height: 3rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.fw-semibold {
    font-weight: 600;
}

.bg-light-gray-custom {
    background-color: var(--light-gray);
}

.border-secondary-gray-opacity {
    border-color: rgba(156, 163, 175, 0.15) !important;
}

.hover-translate-y-custom:hover {
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

.btn-outline-secondary-custom {
    border: 1px solid var(--primary-gray);
    color: var(--primary-gray);
    background-color: transparent;
    font-size: 13px;
}

.btn-outline-secondary-custom:hover {
    background-color: var(--primary-gray);
    color: white !important;
    border-color: var(--primary-gray);
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

@media (max-width: 767.98px) {
    .py-5 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* Materials Section Custom Styles */
.bg-orange-light-custom {
    background-color: #fff7ed !important;
}

.bg-primary-gray-custom {
    background-color: var(--primary-gray) !important;
}

.hover-bg-primary-gray-custom:hover {
    background-color: var(--primary-gray) !important;
}

.hover-text-white-custom:hover {
    color: white !important;
}

.hover-border-primary-orange-custom:hover {
    border-color: var(--primary-orange) !important;
}

.transition-all-custom {
    transition: all 0.3s ease;
}

/* Custom styles for corrected sections */
.w-12-custom {
    width: 3rem;
}

.w-24-custom {
    width: 6rem;
}

.w-48 {
    width: 3rem;
}

.w-64 {
    width: 4rem;
}

.h-48 {
    height: 3rem;
}

.h-60-custom {
    height: 15rem;
}

.h-90-custom {
    height: 18rem;
}

.h-48-custom {
    height: 12rem;
}

.w-20-custom {
    width: 5rem;
}

.h-20-custom {
    height: 5rem;
}

.bg-gradient-to-br-light {
    background: linear-gradient(to bottom right, #f9fafb, #ffffff);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 62.5%;
    background: linear-gradient(to bottom right, var(--primary-gray), #4b5563, var(--primary-gray));
}

.video-container > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay-gradient {
    background: linear-gradient(to top, rgba(107, 114, 128, 0.8) 0%, transparent 50%, rgba(107, 114, 128, 0.2) 100%);
}

.play-button-wrapper {
    position: relative;
}

.play-button-hover:hover {
    transform: scale(1.1);
    transition: transform 0.3s;
}

.play-button-pulse {
    width: 5.5rem;
    height: 5.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.tech-specs-overlay {
    backdrop-filter: blur(10px);
}

.bg-white-opacity {
    background-color: rgba(255, 255, 255, 0.1);
}

.border-white-opacity-20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-button-hover:hover {
    background-color: #e67300 !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    transition: all 0.3s;
}

.cta-button-secondary-hover:hover {
    background-color: var(--primary-gray) !important;
    color: white !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    transition: all 0.3s;
}

.bg-primary-orange-opacity-10 {
    background-color: rgba(255, 128, 0, 0.1);
}

.tech-feature-hover:hover {
    border-color: var(--primary-orange) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.certification-badge-gradient {
    background: linear-gradient(to right, var(--primary-gray), #4b5563);
}

.video-card-hover {
    transition: all 0.3s;
}

.video-card-hover:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary-orange) !important;
    transform: translateY(-4px);
}

.video-play-button:hover {
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
}

.video-play-button:hover i {
    color: white !important;
}

.upload-drop-zone:hover {
    border-color: var(--primary-orange) !important;
    transition: border-color 0.3s;
}

.border-secondary-gray-opacity {
    border-color: rgba(156, 163, 175, 0.15);
}

@media (max-width: 767.98px) {
    .h-60-custom {
        height: 12rem;
    }
}

.insight-card-header {
    background: linear-gradient(to right, var(--primary-orange), #ea580c);
}

.bg-gradient-to-b-testimonials {
    background: linear-gradient(to bottom, #ffffff, #f9fafb, #ffffff);
}

.bg-gradient-to-b-faq {
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: var(--primary-orange) !important;
    color: white !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.border-white-opacity-25 {
    border-color: rgba(255, 255, 255, 0.25) !important;
}




/* LIST PAGE */
:root {
    --primary-orange: #ff8000;
    --primary-orange-custom: #ff8000;
    --primary-gray: #4A4D51;
    --primary-gray-custom: #6B7280;
    --secondary-gray: #737C84;
    --secondary-gray-custom: #9CA3AF;
    --light-gray: #F8F9FA;
    --light-gray-custom: #F9FAFB;
}

::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', sans-serif;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Header */
.logo-header {
    height: 32px;
    width: auto;
}

.nav-link-custom {
    color: var(--primary-gray);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link-custom:hover {
    color: var(--primary-orange);
}

.btn-primary-orange {
    background-color: var(--primary-orange);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-orange:hover {
    transform: scale(1.05);
    background-color: var(--primary-orange);
    color: white;
}

/* Hero Section */
.hero-section-custom {
    background: linear-gradient(to bottom right, #f9fafb, white, #f3f4f6);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, #ff8000 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-image-wrapper {
    height: 400px;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.letter-spacing {
    letter-spacing: 0.1em;
}

.badge-custom {
    background: white;
    border: 1px solid rgba(255, 128, 0, 0.3);
    color: var(--primary-gray);
    padding: 0.5rem 1rem;
    border-radius: 50rem;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.badge-orange {
    border-color: rgba(255, 128, 0, 0.3);
}

/* Filter Toolbar */
.sticky-top-custom {
    position: sticky;
    top: 73px;
    z-index: 40;
}

.btn-filter {
    padding: 0.5rem 1.25rem;
    border-radius: 50rem;
    font-size: 0.875rem;
    font-weight: 600;
    background-color: var(--light-gray);
    color: var(--primary-gray);
    border: none;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    background-color: var(--primary-gray);
    color: white;
}

.filter-btn.active {
    background-color: var(--primary-gray);
    color: white;
}

.search-input-custom {
    padding-left: 2.5rem;
}

.search-icon-custom {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-gray);
}

.form-select-custom {
    border-color: rgba(115, 124, 132, 0.3);
    color: var(--primary-gray);
}

.form-select-custom:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(255, 128, 0, 0.25);
}

.btn-icon {
    padding: 0.75rem;
    border-color: rgba(115, 124, 132, 0.3);
}

.btn-icon:hover {
    background-color: var(--light-gray);
}

/* Filters Section */
.card-filter {
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.sticky-filter {
    position: sticky;
    top: 120px;
}

.filter-checkbox {
    cursor: pointer;
}

.filter-checkbox:hover span {
    color: var(--primary-gray);
}

.border-secondary-gray {
    border-color: rgba(115, 124, 132, 0.2) !important;
}

/* Category Cards */
.category-card {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(115, 124, 132, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.category-image-wrapper {
    height: 192px;
    overflow: hidden;
    position: relative;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-popular {
    background-color: var(--primary-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-new {
    background-color: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-tag {
    background-color: rgba(255, 128, 0, 0.1);
    color: var(--primary-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 50rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.btn-outline-primary-gray {
    border: 2px solid var(--primary-gray);
    color: var(--primary-gray);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-outline-primary-gray:hover {
    background-color: var(--primary-gray);
    color: white;
}

/* Pagination */
.pagination .page-link {
    padding: 0.5rem 1rem;
    border-color: rgba(115, 124, 132, 0.3);
    color: var(--secondary-gray);
    border-radius: 0.5rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: var(--light-gray);
}

.pagination .page-link.active {
    background-color: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

/* Industries Section */
.card-industry {
    border-radius: 0.75rem;
    border: 1px solid rgba(115, 124, 132, 0.1);
    background: linear-gradient(to bottom right, var(--light-gray), white);
    transition: all 0.3s ease;
}

.card-industry:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 128, 0, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box-small {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 128, 0, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Design Guidelines */
.bg-gradient-light {
    background: linear-gradient(to bottom, var(--light-gray), white);
}

.design-image-wrapper {
    height: 256px;
    overflow: hidden;
    border-radius: 0.5rem;
    background: linear-gradient(to bottom right, #f3f4f6, #e5e7eb);
}

.design-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-highlight {
    background-color: rgba(255, 128, 0, 0.05);
    border: 2px solid rgba(255, 128, 0, 0.2);
    border-radius: 0.75rem;
}

/* FAQ Section */
.accordion-custom .card {
    border: 1px solid rgba(115, 124, 132, 0.15);
    border-radius: 0.75rem;
    overflow: hidden;
}

.faq-button {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.faq-button:hover {
    background-color: var(--light-gray);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content .card-body {
    padding: 0 2rem 1.5rem;
}

/* CTA Section */
.cta-section-custom {
    background: linear-gradient(to bottom right, var(--primary-gray), var(--primary-gray));
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, #ff8000 1px, transparent 0);
    background-size: 40px 40px;
}

.icon-cta {
    width: 80px;
    height: 80px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-white-custom {
    background-color: white;
    color: var(--primary-gray);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-white-custom:hover {
    transform: scale(1.05);
    background-color: white;
    color: var(--primary-gray);
}

/* Footer */
.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-orange);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-orange);
    color: white;
}

/* Container Customizado 90% */
.container-custom-90 {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    padding-left: 15px;
    padding-right: 15px;
}
/* Utility Classes */
.text-primary-orange {
    color: var(--primary-orange) !important;
}

.text-primary-gray {
    color: var(--primary-gray) !important;
}

.text-secondary-gray {
    color: var(--secondary-gray) !important;
}

.bg-primary-gray {
    background-color: var(--primary-gray) !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}

.border-secondary-gray {
    border-color: rgba(115, 124, 132, 0.2) !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .sticky-filter {
        position: relative;
        top: 0;
    }
    
    .sticky-top-custom {
        position: relative;
        top: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section-custom {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-image-wrapper {
        height: 300px;
        margin-top: 2rem;
    }
}


.w-25 {
    width: 25%;
}

.w-2 {
    width: 0.5rem;
}

.h-2 {
    height: 0.5rem;
}

.h-1 {
    height: 0.25rem;
}

/* CTA Upload Section Styles */
.h1-lg {
    font-size: 2.5rem;
}

@media (max-width: 767.98px) {
    .h1-lg {
        font-size: 1.75rem;
    }
}

.xsmall {
    font-size: 0.7rem;
}

.btn-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background-color: #e67300;
    border-color: #e67300;
    color: white;
}

/*detali page */
/* (accordion-content já definido no início do arquivo; mantemos apenas a definição global) */

/* Cores customizadas */
.text-primary-orange-custom {
    color: var(--primary-orange) !important;
}

.text-primary-gray-custom {
    color: var(--primary-gray) !important;
}

.text-primary-blue-custom {
    color: var(--primary-blue) !important;
}

.text-secondary-gray-custom {
    color: var(--secondary-gray) !important;
}

.bg-primary-orange-custom {
    background-color: var(--primary-orange) !important;
}

.bg-primary-gray-custom {
    background-color: var(--primary-gray) !important;
}

.bg-hero-gradient {
    background: linear-gradient(to bottom right, #f3f4f6, #ffffff, #f9fafb);
}

.border-bottom-custom {
    border-bottom: 1px solid rgba(156, 163, 175, 0.2) !important;
}

.border-primary-orange-opacity {
    border-color: rgba(255, 128, 0, 0.3) !important;
}

.hover-primary-orange-custom:hover {
    color: var(--primary-orange) !important;
}

.hover-primary-blue-custom:hover {
    color: var(--primary-blue) !important;
}

.hover-scale-custom:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.hover-shadow-lg-custom:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.hover-shadow-xl-custom:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #e67300;
    border-color: #e67300;
}

.btn-primary-orange-custom {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

.btn-primary-orange-custom:hover {
    background-color: #e67300;
    border-color: #e67300;
    color: white;
}

.btn-outline-primary {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: rgba(255, 128, 0, 0.08);
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-outline-primary-orange-custom {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    background-color: transparent;
}

.btn-outline-primary-orange-custom:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

.btn-primary-gray-custom { 
    background-color: var(--primary-gray); 
    border-color: var(--primary-gray);
    color: white;
}

.btn-primary-gray-custom:hover { 
    background-color: #4b5563; 
    border-color: #4b5563;
    color: white;
}

.text-primary {
    color: var(--primary-orange) !important;
}

.hover-bg-primary-orange-custom:hover {
    background-color: var(--primary-orange) !important;
}

.hover-text-white-custom:hover {
    color: white !important;
}

.header-logo {
    height: 56px;
    width: auto;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1051;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-body {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}

.mobile-menu-link {
    transition: all 0.2s ease;
}

.mobile-menu-link:hover {
    color: var(--primary-orange) !important;
    background-color: rgba(255, 128, 0, 0.05);
}

.mobile-menu-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-dropdown.active {
    max-height: 500px;
}

.mobile-menu-toggle-btn {
    transition: all 0.2s ease;
}

.mobile-menu-toggle-btn:hover {
    background-color: rgba(107, 114, 128, 0.05);
}

.mobile-menu-toggle-btn.active i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Dropdown Menu Styles */
.dropdown-menu-wrapper {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(-10px);
    z-index: 1000;
}

.dropdown-menu-wrapper:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item-wrapper {
    position: relative;
}

.dropdown-item-custom {
    display: block;
    padding: 10px 20px;
    color: var(--primary-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item-custom:hover {
    color: var(--primary-orange);
    background-color: rgba(255, 128, 0, 0.05);
}

.dropdown-item-wrapper:hover > .dropdown-item-custom {
    color: var(--primary-orange);
}

/* Submenu (segundo nível) */
.dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 8px 0;
    margin-left: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-10px);
    z-index: 1001;
}

.dropdown-item-wrapper:hover > .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-subitem {
    display: block;
    padding: 8px 20px;
    color: var(--primary-gray);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.dropdown-subitem:hover {
    color: var(--primary-orange);
    background-color: rgba(255, 128, 0, 0.05);
}

/* Seta indicadora para itens com submenu */
.dropdown-item-wrapper > .dropdown-item-custom::after {
    content: '›';
    position: absolute;
    right: 15px;
    color: var(--primary-gray);
    font-size: 18px;
    transition: color 0.2s ease;
}

.dropdown-item-wrapper:hover > .dropdown-item-custom::after {
    color: var(--primary-orange);
}

.text-light-gray { color: #ced4da !important; }
.bg-gray-50 { background-color: #F8F9FA !important; }
.bg-gray-100 { background-color: #f1f3f5 !important; }

.gallery-item {
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: block;
    width: 100%;
    height: 100%;
}
.gallery-item img {
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(107, 114, 128, 0);
    opacity: 0;
    transition: all 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: rgba(107, 114, 128, 0.45);
}
/* Estilos para links da galeria Fancybox */
#gallery a {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
}
#gallery a:hover {
    text-decoration: none;
}

.dot-primary, .dot-muted, .dot-dark {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    flex-shrink: 0;
}
.dot-primary { background-color: var(--primary-orange); }
.dot-muted { background-color: #ced4da; }
.dot-dark { background-color: var(--primary-gray); }

.vertical-line {
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #dee2e6;
}
.timeline-dot {
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    box-shadow: 0 0 0 4px #fff;
}

/* Versões em laranja usadas na timeline da detail page */
.timeline-dot-orange {
    background-color: var(--primary-orange);
}

.border-timeline-orange {
    border-left-color: var(--primary-orange) !important;
}

.xsmall { font-size: 0.7rem; }

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: var(--primary-orange) !important;
    color: white !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.border-white-opacity-25 {
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.hero-image {
    min-height: 260px;
    max-height: 420px;
}

/* Espaçamento mais confortável na FAQ */
.accordion-static-group .accordion-static-btn span {
    line-height: 1.6;
    display: inline-block;
}

@media (min-width: 992px) {
    .hero-image {
        min-height: 360px;
        max-height: 480px;
    }
    .h1-lg {
        font-size: 2.5rem;
    }
}


.text-primary-orange {
    color: #ff8000 !important;
}

.bg-primary-orange {
    background-color: #ff8000 !important;
}

.text-primary-gray {
    color: #4A4D51 !important;
}

.bg-primary-gray {
    background-color: #4A4D51 !important;
}

.text-secondary-gray {
    color: #737C84 !important;
}

.bg-light-gray {
    background-color: #F8F9FA !important;
}

.bg-gray-200 {
    background-color: #e5e7eb !important;
}

.header-logo {
    height: 56px;
    width: auto;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1051;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-body {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}

.mobile-menu-link {
    transition: all 0.2s ease;
}

.mobile-menu-link:hover {
    color: var(--primary-orange) !important;
    background-color: rgba(255, 128, 0, 0.05);
}

.mobile-menu-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-dropdown.active {
    max-height: 500px;
}

.mobile-menu-toggle-btn {
    transition: all 0.2s ease;
}

.mobile-menu-toggle-btn:hover {
    background-color: rgba(107, 114, 128, 0.05);
}

.mobile-menu-toggle-btn.active i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Dropdown Menu Styles */
.dropdown-menu-wrapper {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(-10px);
    z-index: 1000;
}

.dropdown-menu-wrapper:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item-wrapper {
    position: relative;
}

.dropdown-item-custom {
    display: block;
    padding: 10px 20px;
    color: var(--primary-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item-custom:hover {
    color: var(--primary-orange);
    background-color: rgba(255, 128, 0, 0.05);
}

.dropdown-item-wrapper:hover > .dropdown-item-custom {
    color: var(--primary-orange);
}

/* Submenu (segundo nível) */
.dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 8px 0;
    margin-left: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-10px);
    z-index: 1001;
}

.dropdown-item-wrapper:hover > .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-subitem {
    display: block;
    padding: 8px 20px;
    color: var(--primary-gray);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.dropdown-subitem:hover {
    color: var(--primary-orange);
    background-color: rgba(255, 128, 0, 0.05);
}

/* Seta indicadora para itens com submenu */
.dropdown-item-wrapper > .dropdown-item-custom::after {
    content: '›';
    position: absolute;
    right: 15px;
    color: var(--primary-gray);
    font-size: 18px;
    transition: color 0.2s ease;
}

.dropdown-item-wrapper:hover > .dropdown-item-custom::after {
    color: var(--primary-orange);
}

.bg-primary-gray-custom {
    background-color: var(--primary-gray) !important;
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: var(--primary-orange) !important;
    color: white !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.border-white-opacity-25 {
    border-color: rgba(255, 255, 255, 0.25) !important;
}

/* Header border */
#header.border-bottom {
    border-color: rgba(115, 124, 132, 0.2) !important;
}

/* Hover effects */
.text-primary-orange-hover:hover {
    color: #ff8000 !important;
    transition: color 0.2s ease;
}

/* Card borders */
.border {
    border-color: rgba(115, 124, 132, 0.15) !important;
}

/* Letter spacing */
.letter-spacing-wide {
    letter-spacing: 0.05em;
}
    
    /* Blog content styles */
    .blog-content h2 { 
        font-size: 2rem; 
        font-weight: 600; 
        color: #4A4D51; 
        margin-top: 1.5rem; 
        margin-bottom: 1.5rem; 
    }
    
    .blog-content h3 { 
        font-size: 1.5rem; 
        font-weight: 600; 
        color: #4A4D51; 
        margin-top: 2rem; 
        margin-bottom: 1rem; 
    }
    
    .blog-content p { 
        color: #737C84; 
        line-height: 1.8; 
        margin-bottom: 1.5rem; 
        font-size: 1.125rem; 
    }
    
    .blog-content ul { 
        color: #737C84; 
        line-height: 1.8; 
        margin-bottom: 1.5rem; 
        padding-left: 1.5rem; 
    }
    
    .blog-content ul li { 
        margin-bottom: 0.75rem; 
    }
    
    .blog-content strong { 
        color: #4A4D51; 
        font-weight: 600; 
    }
    
    /* Gradient orange background */
    .bg-gradient-orange {
        background: linear-gradient(to bottom right, #ff8000, #fbbf24) !important;
    }
    
    /* Button styles */
    .btn-white {
        background-color: #ffffff !important;
        color: #4A4D51 !important;
    }
    
    .btn-white:hover {
        transform: scale(1.05);
        transition: transform 0.2s ease;
    }
    
    .btn-outline-white {
        border-color: #ffffff !important;
        color: #ffffff !important;
        background-color: transparent !important;
    }
    
    .btn-outline-white:hover {
        background-color: #ffffff !important;
        color: #4A4D51 !important;
        transition: all 0.2s ease;
    }
    
    /* Shadow hover effect */
    .hover-shadow-lg {
        transition: box-shadow 0.3s ease;
    }
    
    .hover-shadow-lg:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    }
    
    /* Icon container sizes */
    #header .bg-primary-orange,
    #footer .bg-primary-orange {
        width: 2rem;
        height: 2rem;
    }
    
    /* Responsive adjustments */
    @media (max-width: 767.98px) {
        .blog-content h2 {
            font-size: 1.75rem;
        }
        
        .blog-content h3 {
            font-size: 1.25rem;
        }
        
        .blog-content p {
            font-size: 1rem;
        }
        
        .display-4 {
            font-size: 2rem !important;
        }
    }

#search-autocomplete .dropdown-menu{
  display:block;
  visibility:hidden;
  opacity:0;
  transform:translateY(4px);
  transition:.12s ease;
}
#search-autocomplete .dropdown-menu.show{
  visibility:visible;
  opacity:1;
  transform:translateY(0);
}

#search-autocomplete .dropdown-item.active,
#search-autocomplete .dropdown-item:active{
  background-color:#0d6efd;
  color:#fff;
}


/* ✅ FIX DO TEXTO CORTADO */
#search-autocomplete .dropdown-item{
  display:flex;            /* garante layout consistente */
  align-items:center;
  gap:.5rem;
  width:100%;
  white-space:nowrap;      /* se quiser quebrar linha, eu te mando a variação */
}

/* ícone (quando existir dentro do item) não encolhe */
#search-autocomplete .dropdown-item svg,
#search-autocomplete .dropdown-item i{
  flex:0 0 auto;
}

/* ESSENCIAL: permite o texto encolher e aplicar ellipsis em flex */
#search-autocomplete .dropdown-item .result-text{
  flex:1 1 auto;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

#search-autocomplete { position: relative; }

#desktop-search-autocomplete{
  width: 420px !important;   /* define a largura desejada */
  min-width: 420px !important;
  left: 0;                   /* alinhado à esquerda do input */
  right: auto;
}

/* se o dropdown ficar pra fora em telas menores, limita ao viewport */
@media (max-width: 575.98px){
  #desktop-search-autocomplete{
    width: calc(100vw - 24px) !important;
    min-width: 0 !important;
  }
}
#contact-form-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

#contact-form-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 1rem;
}

#contact-form-section p {
    color: var(--secondary-gray);
    margin-bottom: 2rem;
}

.contact-form-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.25rem;
}

.contact-form-input,
.contact-form-textarea,
.contact-form-select {
    display: block;
    width: 100%;
    padding: 0.625rem 1rem;
    border: 1px solid rgba(115, 124, 132, 0.2);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    height: 47px;
}

.contact-form-input:focus,
.contact-form-textarea:focus,
.contact-form-select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 128, 0, 0.1);
}

.contact-form-select {
    background-color: white;
    font-family: inherit;
}

.contact-form-textarea {
    resize: vertical;
}

.contact-form-tip {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--secondary-gray);
}

.contact-form-tip a {
    color: var(--primary-orange);
    text-decoration: underline;
}

.contact-btn-primary {
    background-color: var(--primary-orange);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.375rem;
    transition: opacity 0.2s;
}

.contact-btn-primary:hover {
    opacity: 0.9;
}

.contact-form-link {
    font-weight: 600;
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 0.875rem;
}

.contact-form-link:hover {
    text-decoration: underline;
}

.optional {
    color: var(--secondary-gray);
    font-weight: normal;
}

.contact-location-info {
    margin-bottom: 1rem;
}

.contact-location-info h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 0.75rem;
}

.contact-location-info p {
    color: var(--secondary-gray);
}

.google-map-container {
    width: 100%;
    height: 300px;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-top: 1rem;
}

.google-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

#quote-info {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(115, 124, 132, 0.2);
}

#quote-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
}

#quote-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

#quote-info ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--secondary-gray);
}

#quote-info ul li i {
    color: var(--primary-orange);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

#quote-info ul li strong {
    color: var(--primary-gray);
}

.quote-note {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(115, 124, 132, 0.2);
}

.quote-note p {
    font-size: 0.875rem;
    color: var(--secondary-gray);
    line-height: 1.6;
    margin: 0;
}

.quote-note strong {
    color: var(--primary-gray);
}
/* Hero Section Styles */
.contact-hero-section {
    background-color: var(--light-gray);
    padding: 6rem 0;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero-text {
    font-size: 1.125rem;
    color: var(--secondary-gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

.contact-hero-btn-primary {
    background-color: var(--primary-orange);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.2s;
}

.contact-hero-btn-primary:hover {
    opacity: 0.9;
    color: white;
}

.contact-hero-btn-secondary {
    background-color: white;
    color: var(--primary-gray);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--secondary-gray);
    transition: background-color 0.2s;
}

.contact-hero-btn-secondary:hover {
    background-color: #f3f4f6;
    color: var(--primary-gray);
}

.contact-hero-badges {
    font-size: 0.875rem;
    color: var(--secondary-gray);
}

.contact-hero-icon {
    color: var(--primary-orange);
}

.contact-hero-image-wrapper {
    height: 450px;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Contact Options Styles */
.contact-options-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 1rem;
}

.contact-options-subtitle {
    font-size: 1.125rem;
    color: var(--secondary-gray);
    max-width: 768px;
    margin: 0 auto;
}

.contact-option-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(115, 124, 132, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.contact-option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-option-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.contact-option-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-gray);
    margin-bottom: 0.75rem;
}

.contact-option-text {
    color: var(--secondary-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.contact-option-link {
    font-weight: 600;
    color: var(--primary-orange);
    text-decoration: none;
    transition: text-decoration 0.2s;
    word-wrap: break-word;
}

.contact-option-link:hover {
    text-decoration: underline;
}

.contact-option-address {
    font-weight: 600;
    color: var(--primary-gray);
    margin-bottom: 0;
}
.fs-15 {
    font-size: 15px;
}
.border-warning {
    border-color: #ff8000 !important;
}

@media (max-width: 1300px){
  .d-1300-block{ display:block !important; }
}
.fs-26 {
    font-size: 26px;
}
.text-orange {
    color: #ff8000;
}