
:root {
    --primary-color: #838f67;
    --secondary-color: #3b4431;
    --accent-color: #ffc75e;
    --white-color: #ffffff;
    --dark-color: #2c2c2c;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #ffb347);
    --transition: all 0.3s ease;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #262b21;
}

::-webkit-scrollbar-thumb {
    background: #828e64;
    border-radius: 0;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: #9ca382;
}


html {
    scrollbar-width: thin;
    scrollbar-color: #828e64 #262b21;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Roboto, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    padding-top: 117px;
}

/* Override Bootstrap bg-light para filtros */
.bg-light {
    --bs-bg-opacity: 1;
    background-color: #f7f7f7 !important;
}

h1, h2, h3, h4, h5, h6,
.hero-title-main,
.section-title {
    font-family: inherit;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}


html {
    scrollbar-width: thin;
    scrollbar-color: #828e64 #262b21;
}


/* Progress Bar Background */
#loading-progress-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 10000;
    pointer-events: none;
}

/* Progress Bar */
#loading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #555e43;
    z-index: 10001;
    transition: width 0.1s ease;
    pointer-events: none;
}

/* CTA Bar */
.cta-bar {
    background: #f8f9fa;
    color: #333;
    padding: 0.5rem 0;
    position: fixed;
    top: 2px;
    left: 0;
    right: 0;
    z-index: 1001;
    border-bottom: 1px solid #e0e0e0;
    height: 45px;
    margin: 0;
}

.cta-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.cta-bar-text {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cta-bar-text i {
    color: #666;
    font-size: 0.85rem;
}

.cta-bar-text strong {
    color: #333;
    font-weight: 600;
}

.cta-text-short {
    display: none;
}

.cta-text-full {
    display: inline;
}

.cta-bar-btn {
    background: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 0.4rem 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
    white-space: nowrap;
    border-radius: 0;
}

.cta-bar-btn i {
    color: var(--white-color);
}

.cta-bar-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    border-color: var(--secondary-color);
}

.cta-bar-btn:hover i {
    color: var(--white-color);
}

.header-sticky {
    position: fixed;
    top: 47px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    border-top: none;
    transition: var(--transition);
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    body {
        padding-top: 117px;
    }

    .cta-bar {
        padding: 0.5rem 0;
        height: 45px;
        width: 100%;
        max-width: 100vw;
        left: 0;
        right: 0;
    }

    .cta-bar .container {
        width: 100%;
        max-width: 100%;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .cta-bar-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }

    .cta-bar-text {
        font-size: 0.7rem;
        text-align: left;
        line-height: 1.2;
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
    }

    .cta-bar-text i {
        display: inline;
        font-size: 0.7rem;
    }

    .cta-text-full {
        display: none;
    }

    .cta-text-short {
        display: inline;
    }

    .cta-bar-btn {
        flex-shrink: 0;
        font-size: 0.68rem;
        padding: 0.4rem 0.8rem;
        white-space: nowrap;
    }

    .header-sticky {
        top: 47px;
        width: 100%;
        max-width: 100vw;
        left: 0;
        right: 0;
    }

    .header-sticky .container {
        width: 100%;
        max-width: 100%;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (max-width: 480px) {
    .cta-bar-text {
        font-size: 0.65rem;
    }

    .cta-bar-text i {
        font-size: 0.65rem;
    }

    .cta-bar-btn {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
    }
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand .logo {
    height: 60px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.cta-nav {
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
    padding: 0.5rem 1rem !important;
    margin-left: 1rem !important;
    border-radius: 0 !important;
}

.cta-nav:hover {
    background: #6d7856 !important;
    transform: translateY(-2px);
    color: var(--white-color) !important;
}


.hero-section {
    position: relative;
    background: var(--gradient-primary);
    color: var(--white-color);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-highlight {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}


.hero-buttons {
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    margin: 0.5rem 0.5rem 0.5rem 0;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 0;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
}

.hero-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: var(--white-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

 @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}


.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}






.plano-card {
    background: var(--white-color);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.plano-card:hover {
    transform: translateY(-10px);
}

.plano-card.popular {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.plano-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.plano-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plano-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.plano-header p {
    color: #666;
}

.plano-price {
    text-align: center;
    margin-bottom: 2rem;
}

.plano-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plano-price .period {
    font-size: 1rem;
    color: #666;
}

.plano-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plano-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plano-features li i {
    color: var(--primary-color);
}


.estrutura-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.estrutura-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-gray);
    transition: var(--transition);
}

.feature-grid .feature-item:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.feature-grid .feature-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-grid .feature-item:hover i {
    color: var(--white-color);
}


.cta-section {
    background: var(--gradient-primary);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    margin: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 0;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
}

.cta-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}


.footer {
    background: #262b21;
    color: var(--white-color);
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white-color);
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--white-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #262b21;
    color: var(--white-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.contact-info .contact-item i {
    color: var(--white-color);
    margin-top: 0.2rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--white-color);
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--white-color);
    opacity: 1;
}

.footer-divider {
    border-color: var(--primary-color);
    margin: 2rem 0;
}

.footer-copyright,
.footer-credits {
    margin: 0;
    opacity: 0.8;
}

.footer-credits a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-credits a:hover {
    text-decoration: underline;
    opacity: 0.8;
}


@media (max-width: 768px) {

    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
        margin: 0;
        padding: 0;
    }

    .container,
    .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
        overflow-x: hidden !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }

    [class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    img {
        max-width: 100% !important;
        height: auto;
    }

    section {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
    }

    .card {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .g-4 {
        --bs-gutter-x: 1.5rem;
    }

    .container .row {
        margin-left: calc(var(--bs-gutter-x) * -.5);
        margin-right: calc(var(--bs-gutter-x) * -.5);
    }

    .footer-section {
        text-align: left;
        margin-bottom: 2rem;
    }

    .footer-section p {
        text-align: left;
    }

    .footer-section h4::after {
        left: 0;
        transform: none;
    }

    .social-links {
        justify-content: flex-start;
    }

    .contact-info .contact-item {
        justify-content: flex-start;
        text-align: left;
        max-width: 300px;
        margin-left: 0;
        margin-right: auto;
    }

    .footer-links a {
        justify-content: flex-start;
    }

    .footer-copyright,
    .footer-credits {
        text-align: left !important;
    }

    .text-md-end {
        text-align: left !important;
    }
}


.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: var(--white-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
    border-radius: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

.whatsapp-float i {
    transform: rotate(15deg);
    transition: var(--transition);
}

.whatsapp-float:hover i {
    transform: rotate(15deg) scale(1.1);
}

.whatsapp-float .whatsapp-text {
    position: absolute;
    right: 70px;
    background: var(--dark-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--primary-color);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    border-radius: 0;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.commercial-contact {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #838f67; 
    color: white;
    padding: 1rem 0.5rem;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
    animation: slideIn 1s ease-out 2s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.commercial-contact:hover {
    transform: translateY(-50%) translateX(5px);
}

.commercial-contact i {
    font-size: 1.2rem;
    color: white; 
    transform: rotate(-90deg); 
}

.commercial-text {
    writing-mode: vertical-lr; 
    text-orientation: mixed;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transform: rotate(180deg); 
    color: white; 
}

 @keyframes slideIn {
    from {
        transform: translateY(-50%) translateX(-100%);
    }
    to {
        transform: translateY(-50%) translateX(0);
    }
}


.lgpd-popup {
    position: fixed;
    bottom: 6rem;
    left: 2rem;
    max-width: 300px;
    background: var(--white-color);
    z-index: 1000;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.lgpd-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.lgpd-content {
    padding: 1.5rem;
}

.lgpd-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.lgpd-buttons {
    display: flex;
    gap: 0.5rem;
}

.lgpd-buttons .btn {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.8rem;
}


 @media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .lgpd-popup {
        bottom: 4rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
    
    .commercial-contact {
        display: none;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

 @media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    
    .benefit-text h4 {
        font-size: 1rem;
    }
    
    .benefit-text p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .plano-price .price {
        font-size: 2.5rem;
    }

    .navbar-brand .logo {
        height: 45px;
    }
    
    .sala-features {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .sala-features span {
        justify-content: center;
    }
}


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

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

.btn {
    border-radius: 0 !important;
    text-transform: none !important;
}

.btn-primary {
    background: var(--primary-color) !important;
    border: none !important;
    border-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    transition: background-color 0.3s ease;
}

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

.btn-outline-primary {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    background: transparent !important;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-radius: 0 !important;
}


 @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

 @keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

 @keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 0.6s ease-out;
}

.hero-section-esquina {
    position: relative;
    padding: 7rem 0 3rem 0;
}

.hero-content {
    color: var(--dark-color);
    padding: 2rem 0;
}

.hero-h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title-main {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark-color);
}

.hero-title-main strong {
    color: var(--primary-color);
}

.hero-subtitle-main {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle-main strong {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-benefits {
    margin-bottom: 3rem;
}

.hero-benefits .row {
    row-gap: 2rem;
}

.benefit-item-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.benefit-icon {
    background: var(--primary-color);
    color: var(--white-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border-radius: 50%;
}

.benefit-item-hero h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
}

@media (min-width: 769px) {
    .benefit-item-hero h4 {
        white-space: nowrap;
    }
}

@media (min-width: 769px) {
    .hero-benefits .row {
        flex-wrap: nowrap;
    }

    .benefit-item-hero {
        min-width: 0;
    }
}

/* Botões do hero - escondidos em todos os dispositivos */
.hero-actions {
    display: none !important;
}

/* Mantido para compatibilidade caso seja reativado */
.hero-actions .btn {
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    border-radius: 0;
}

.hero-actions .btn:hover {
    transform: translateY(-3px);
}

.hero-actions .btn-outline-light {
    border-color: var(--dark-color);
    color: var(--dark-color);
}

.hero-actions .btn-outline-light:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.hero-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 1rem 1.5rem;
    font-weight: 600;
}


/* Tablets e dispositivos médios */
@media (max-width: 991px) {
    .location-mobile-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-section-esquina {
        padding: 10rem 0 0rem 0;
    }

    .hero-h1 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .hero-title-main {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle-main {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-benefits .row {
        flex-wrap: nowrap;
        row-gap: 0;
    }

    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .benefit-item-hero h4 {
        font-size: 0.65rem;
        line-height: 1.1;
        word-break: break-word;
    }

    .benefit-item-hero {
        gap: 0.3rem;
        min-width: 0;
        flex: 1;
    }

    .hero-benefits .col-4 {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .hero-benefits {
        margin-bottom: 2rem;
    }

    /* Botões empilhados no mobile */
    .location-mobile-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .location-mobile-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
        border-radius: 0 !important;
    }

    .location-image {
        margin-top: 2rem;
    }

    .location-header h2 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 1rem 0;
    }
}

@media (max-width: 400px) {
    .benefit-icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .benefit-item-hero h4 {
        font-size: 0.6rem;
    }

    .hero-benefits .col-4 {
        padding-left: 0.15rem;
        padding-right: 0.15rem;
    }
}


.street-view-popup, .tour-virtual-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow: hidden; 
}

.street-view-popup.active, .tour-virtual-popup.active {
    display: flex;
}

.popup-header {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.popup-back-btn {
    background: var(--white-color);
    border: none;
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popup-back-btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.popup-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.popup-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}


@media (max-width: 768px) {
    .popup-header {
        padding: 1rem;
    }
    
    .popup-header h3 {
        font-size: 1rem;
    }
}

/* Comodidades Section */
.comodidades-section {
    overflow: hidden;
}

/* 5 colunas no desktop */
@media (min-width: 992px) {
    .comodidades-section .col-lg-5cols {
        flex: 0 0 auto;
        width: 20%;
    }
}

.comodidade-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 140px;
    position: relative;
}

.comodidade-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(131, 143, 103, 0.15);
}

.comodidade-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.comodidade-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.6rem;
    border-radius: 0;
    margin-bottom: 0.5rem;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

.comodidade-item span:not(.comodidade-badge) {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
    font-weight: 500;
}

/* Mobile adjustments for comodidades */
@media (max-width: 768px) {
    .comodidade-item {
        padding: 1rem 0.75rem;
        min-height: 120px;
    }

    .comodidade-item i {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
        display: block !important;
    }

    .comodidade-item span:not(.comodidade-badge) {
        font-size: 0.8rem;
    }

    .comodidade-badge {
        font-size: 0.5rem !important;
        padding: 0.15rem 0.4rem !important;
        top: 0.25rem !important;
        right: 0.25rem !important;
    }
}

/* Comodidade Link - Remove underline and inherit styles */
.comodidade-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.comodidade-link:hover {
    text-decoration: none;
    color: inherit;
}

.comodidade-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Sala de Reunião Incluída Section */
.sala-reuniao-incluida-section {
    overflow: hidden;
}

.sala-reuniao-gallery {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.reuniao-carousel {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.reuniao-carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.reuniao-carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.reuniao-carousel-image.active {
    opacity: 1;
    z-index: 1;
}

.reuniao-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.reuniao-carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.reuniao-carousel-btn.prev {
    left: 1rem;
}

.reuniao-carousel-btn.next {
    right: 1rem;
}

.reuniao-carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.reuniao-carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.reuniao-carousel-indicators .indicator.active {
    background: var(--primary-color);
}

.sala-reuniao-content {
    padding: 2rem 0;
}

.reuniao-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reuniao-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.reuniao-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.reuniao-features {
    margin-bottom: 2rem;
}

.feature-item-reuniao {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item-reuniao:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.feature-item-reuniao i {
    font-size: 1.25rem;
    color: var(--primary-color);
    min-width: 24px;
}

.feature-item-reuniao span {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

/* Mobile adjustments for sala reunião */
@media (max-width: 768px) {
    .reuniao-carousel {
        height: 300px;
    }

    .reuniao-title {
        font-size: 1.75rem;
    }

    .reuniao-description {
        font-size: 1rem;
    }

    .feature-item-reuniao {
        padding: 0.75rem;
    }

    .feature-item-reuniao i {
        font-size: 1rem;
    }

    .feature-item-reuniao span {
        font-size: 0.85rem;
    }

    .reuniao-carousel-btn {
        padding: 0.75rem;
    }
}

/* Ambiente Section */
.ambiente-section {
    overflow: hidden;
}

.ambiente-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ambiente-image:hover img {
    transform: scale(1.05);
}

.ambiente-content {
    padding: 2rem 0;
}

.ambiente-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ambiente-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ambiente-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ambiente-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.ambiente-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item-ambiente {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #333;
}

.feature-item-ambiente i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.feature-item-ambiente span {
    font-weight: 500;
}

.ambiente-btn {
    border-radius: 0 !important;
}

@media (max-width: 991px) {
    .ambiente-title {
        font-size: 2rem;
    }

    .ambiente-description {
        font-size: 1rem;
    }

    .ambiente-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .ambiente-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .ambiente-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .ambiente-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1rem;
    }

    .ambiente-description {
        margin-bottom: 0.75rem;
    }

    .ambiente-features {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .ambiente-content {
        padding: 1rem 0;
    }
}

.location-section {
    background: var(--light-gray);
}

.location-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.location-image:hover img {
    transform: scale(1.05);
}

.location-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.location-address {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.location-description {
    font-size: 1rem;
    color: var(--dark-color);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Botões na seção de localização - visível em todos os dispositivos */
.location-mobile-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.location-mobile-buttons .btn {
    flex: 0 1 auto;
    max-width: 180px;
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 0 !important;
}

.location-highlights {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    max-width: 200px;
    text-align: left;
}

.highlight-icon {
    background: var(--primary-color);
    color: var(--white-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.highlight-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.highlight-text p {
    font-size: 0.9rem;
    color: var(--dark-color);
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

.location-map {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}


@media (max-width: 768px) {
    .location-section .row {
        display: flex;
        flex-direction: column;
    }

    .location-section .col-lg-6:has(.location-image) {
        order: -1;
    }

    .location-section .col-lg-6:has(.location-content) {
        order: 1;
    }

    .location-header h2 {
        font-size: 2rem;
    }

    .location-address {
        font-size: 1rem;
    }

    .location-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .location-highlights {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .highlight-item {
        flex: 1;
        min-width: 150px;
        max-width: 250px;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .location-mobile-buttons {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .location-mobile-buttons .btn {
        flex: 1;
        max-width: none;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        white-space: nowrap;
    }

    .location-map iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .location-highlights {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .highlight-item {
        flex-direction: row;
        text-align: left;
        max-width: 300px;
        gap: 1rem;
        align-items: flex-start;
    }

    .highlight-icon {
        flex-shrink: 0;
    }

    .highlight-text h4 {
        font-size: 1rem;
    }

    .highlight-text p {
        font-size: 0.85rem;
    }

    .location-mobile-buttons {
        gap: 0.5rem;
    }

    .location-mobile-buttons .btn {
        font-size: 0.8rem;
        padding: 0.55rem 0.85rem;
    }
}


.filter-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white-color);
    border: 2px solid var(--border-color);
    color: var(--dark-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.bg-filter-light {
    background-color: #fafbfc !important;
}

.filter-description {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .filter-tabs {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: 0;
        max-width: 48%;
    }
}

@media (max-width: 576px) {
    .filter-tabs {
        gap: 0.4rem;
        max-width: 100%;
    }
    
    .filter-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        flex: 1;
        min-width: 0;
        max-width: 48%;
        text-align: center;
    }
    
    
    .filter-btn:nth-child(1),
    .filter-btn:nth-child(2) {
        flex-basis: 48%;
    }
    
    .filter-btn:nth-child(3),
    .filter-btn:nth-child(4) {
        flex-basis: 48%;
    }
    
    .filter-btn:nth-child(5) {
        flex-basis: 100%;
        max-width: 100%;
    }
}


.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.gallery-content {
    background: var(--white-color);
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.gallery-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--white-color);
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-images {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#gallery-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--light-gray);
    overflow-x: auto;
}

.gallery-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    border: 2px solid transparent;
}

.gallery-thumbnail:hover,
.gallery-thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.gallery-info {
    padding: 1.5rem;
    background: var(--white-color);
}

.gallery-info h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: #666;
    margin: 0;
}


.comparison-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: var(--transition);
}

.comparison-bar.show {
    transform: translateY(0);
}

.comparison-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comparison-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-count {
    font-weight: 600;
    color: var(--accent-color);
}

.comparison-actions {
    display: flex;
    gap: 1rem;
}


 @keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

 @keyframes slideUp {
    from {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
}


 @media (max-width: 768px) {
    .hero-section-small {
        padding: 6rem 0 3rem;
    }

    .hero-section-small .hero-title {
        font-size: 2rem;
    }

    .filter-tabs {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .gallery-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    #gallery-main-image {
        height: 250px;
    }

    .gallery-thumbnails {
        padding: 0.5rem;
    }

    .gallery-thumbnail {
        width: 60px;
        height: 45px;
    }
}

 @media (max-width: 576px) {
    .hero-section-small .hero-title {
        font-size: 1.75rem;
    }

    .gallery-info {
        padding: 1rem;
    }
}

.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: var(--white-color);
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.hero-highlight-link {
    text-decoration: none;
    display: inline-block;
}

.hero-highlight-link:hover .hero-highlight {
    transform: scale(1.05);
}

.hero-highlight {
    transition: all 0.3s ease;
}

/* Endereço Fiscal Section */
.endereco-fiscal-section {
    overflow: hidden;
}

.endereco-fiscal-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.endereco-fiscal-image:hover img {
    transform: scale(1.05);
}

.endereco-fiscal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.endereco-fiscal-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.endereco-fiscal-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.endereco-fiscal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item-endereco {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item-endereco i {
    font-size: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item-endereco span {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.endereco-fiscal-btn {
    border-radius: 0 !important;
}

@media (max-width: 576px) {
    .endereco-fiscal-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .endereco-fiscal-description {
        margin-bottom: 0.75rem;
    }

    .endereco-fiscal-features {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .endereco-fiscal-content {
        padding: 1rem 0;
    }
}


