/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.text-primary {
    color: #0A2342 !important; /* Dark Blue */
}

.bg-primary {
    background-color: #0A2342 !important; /* Dark Blue */
}

.btn-primary {
    background-color: #0A2342;
    border-color: #0A2342;
    color: #fff;
    transition: all 0.3s ease;
    white-space: normal;
    word-break: break-word;
}

.btn-primary:hover {
    background-color: #1a3b6a;
    border-color: #1a3b6a;
    color: #fff;
}

.btn-outline-secondary {
    color: #0A2342;
    border-color: #0A2342;
    transition: all 0.3s ease;
    white-space: normal;
    word-break: break-word;
}

.btn-outline-secondary:hover {
    background-color: #0A2342;
    color: #fff;
}

.text-gold {
    color: #FFD700 !important; /* Gold */
}

.bg-gold {
    background-color: #FFD700 !important;
}

.bg-light-gray {
    background-color: #f0f2f5;
}

.bg-secondary-dark {
    background-color: #212529;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0A2342;
}

.section-title-light {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.section-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0A2342;
}

.icon-large {
    font-size: 3.5rem;
}

.icon-small {
    font-size: 1.5rem;
}

.email-break {
    word-break: break-all;
}

/* Header */
.navbar-brand .site-logo {
    height: 40px;
    width: auto;
}

.navbar-brand .site-name {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: #0A2342;
    font-weight: 600;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #FFD700;
}

.offcanvas-header {
    background-color: #0A2342;
    color: #fff;
}

.offcanvas-title {
    color: #fff;
}

.btn-close-white {
    filter: invert(1);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    padding-top: 180px; /* Adjust for fixed header */
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 0;
}

.hero-section h1 {
    font-size: 3.5rem;
}

.hero-section .hero-subtitle {
    font-size: 1.5rem;
}

.hero-advantage-item {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Para quem trabalhamos & Nossos principais serviços */
.card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Por que Arcabouço Contabilidade */
.why-us-list li {
    margin-bottom: 20px;
}

.why-us-list .material-symbols-outlined {
    border: 2px solid #FFD700;
    border-radius: 50%;
    padding: 5px;
    line-height: 1;
    flex-shrink: 0;
}

.blurred-image {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Como trabalhamos */
.process-flow .process-step {
    position: relative;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-flow .process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Planos / Formatos de trabalho */
.plan-card {
    border: 1px solid #eee;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.plan-features li {
    color: #555;
    font-size: 0.95rem;
}

.plan-features .material-symbols-outlined {
    font-size: 1.2rem;
}

/* Depoimentos e confiança */
.testimonial-card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.avatar-small {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.stats-card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Perguntas frequentes (FAQ) */
.accordion-button {
    font-weight: 600;
    color: #0A2342;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #0A2342;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.accordion-body {
    color: #555;
    padding: 1rem 1.25rem;
    background-color: #fff;
}

/* Final Call to Action */
.cta-form {
    background-color: #fff;
    color: #333;
}

.cta-form .form-label {
    font-weight: 600;
}

/* Footer */
.footer-section {
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-section .site-logo-footer {
    height: 35px;
    width: auto;
}

.footer-section .site-name-footer {
    font-size: 1.3rem;
}

.footer-section a {
    color: #adb5bd;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-section .icon-footer {
    font-size: 1.2rem;
    vertical-align: middle;
    margin-bottom: 2px;
}

.widget-card {
    background-color: #343a40;
    border: 1px solid #495057;
    color: #fff;
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1070; /* Higher than Bootstrap modals */
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: #333;
    color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.cookie-banner p {
    margin-bottom: 0;
}

.cookie-banner .btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
}

.modal-content {
    border: none;
}

.modal-header, .modal-footer {
    border-color: #495057;
}

.form-check-label {
    font-weight: 600;
}

.form-check-input:checked {
    background-color: #0A2342;
    border-color: #0A2342;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(10, 35, 66, 0.25);
}

/* Responsive Typography */
.header-title {
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
}

.site-name {
    font-size: 1.25rem;
}

.site-name-footer {
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .header-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.4rem;
    }
    .site-name {
        font-size: 1.4rem;
    }
    .site-name-footer {
        font-size: 1.25rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .section-title-light {
        font-size: 2.5rem;
    }
    .section-subtitle {
        font-size: 1.8rem;
    }
}

@media (min-width: 1024px) {
    .header-title {
        font-size: 3.8rem;
    }
    .hero-subtitle {
        font-size: 1.6rem;
    }
    .site-name {
        font-size: 1.5rem;
    }
    .site-name-footer {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 2.8rem;
    }
    .section-title-light {
        font-size: 2.8rem;
    }
    .section-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 1100px) {
    .navbar-nav {
        flex-wrap: wrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px; /* To prevent scrollbar from overlapping content */
    }
    .navbar-nav .nav-item {
        /* flex: 0 0 auto; */
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100%;
        background-color: #fff;
        transition: right 0.3s ease-in-out;
        z-index: 1050;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    .navbar-collapse.show {
        right: 0;
    }
    .navbar-toggler {
        display: block;
    }
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 20px;
        padding-left: 15px;
    }
    .navbar-nav .nav-link {
        padding: 10px 0;
        margin-right: 0;
        width: 100%;
    }
    .offcanvas-body .btn {
        width: auto;
    }
    .hero-section {
        padding-top: 150px;
    }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner p {
        margin-bottom: 10px !important;
    }
    .cookie-banner .d-flex {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 1.8rem; /* Mobile font size */
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .navbar-brand .site-name {
        font-size: 1.1rem;
    }
    .site-name-footer {
        font-size: 1rem;
    }
    .section-title, .section-title-light {
        font-size: 1.75rem;
    }
    .section-subtitle {
        font-size: 1.25rem;
    }
    .navbar-brand .site-logo {
        height: 30px;
    }
    .hero-section .btn-lg {
        width: 100%;
    }
    .hero-advantage-item {
        padding: 10px;
    }
    .icon-large {
        font-size: 2.5rem;
    }
}
/* Parent container for compliance-related content */
.complianceCoreSlot {
    padding: 1.5rem; /* Padding on all sides for the main content area */
    /* You might want to add a margin-bottom if this slot is often followed by other distinct sections */
    /* margin-bottom: 2rem; */
}

/* Heading styles for complianceCoreSlot content */
.complianceCoreSlot h1 {
    font-size: 1.8rem; /* Moderately sized heading 1 */
    font-weight: 700; /* Bold font weight */
    line-height: 1.2; /* Standard line height for headings */
    margin-top: 2rem; /* Space above heading */
    margin-bottom: 1rem; /* Space below heading */
}

.complianceCoreSlot h2 {
    font-size: 1.6rem; /* Moderately sized heading 2 */
    font-weight: 700;
    line-height: 1.2;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

.complianceCoreSlot h3 {
    font-size: 1.4rem; /* Moderately sized heading 3 */
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.6rem;
    margin-bottom: 0.7rem;
}

.complianceCoreSlot h4 {
    font-size: 1.2rem; /* Moderately sized heading 4 */
    font-weight: 700;
    line-height: 1.4;
    margin-top: 1.4rem;
    margin-bottom: 0.6rem;
}

.complianceCoreSlot h5 {
    font-size: 1.1rem; /* Moderately sized heading 5 */
    font-weight: 700;
    line-height: 1.4;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Paragraph styles for complianceCoreSlot content */
.complianceCoreSlot p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.6; /* Improved readability for body text */
    margin-bottom: 1rem; /* Space between paragraphs */
}

/* Unordered list styles for complianceCoreSlot content */
.complianceCoreSlot ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for bullet points */
}

/* List item styles for complianceCoreSlot content */
.complianceCoreSlot li {
    font-size: 1rem; /* Inherit or set base font size */
    line-height: 1.5; /* Line height for list items */
    margin-bottom: 0.5rem; /* Space between list items */
}
@media screen and (width < 576px) {
    .navbar-toggler {
        padding: 5px;
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-wrap: wrap;
    }
}