/* Custom Styling for Andreia Rodrigues Advocacia */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-color: #0F2D52; /* Deep Navy Blue */
    --primary-light: #174276;
    --primary-dark: #07172B;
    --accent-color: #C9A227;  /* Gold */
    --accent-hover: #AB881E;
    --accent-light: #F2E3B6;
    --text-color: #333333;
    --text-muted: #6C757D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 35px rgba(15, 45, 82, 0.1);
}

/* Base Styles */
body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--accent-color);
}

/* Theme Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--bg-white) !important;
    border: 2px solid var(--primary-color);
    padding: 10px 24px;
    font-weight: 500;
    font-family: var(--font-body);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed) ease;
}

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

.btn-accent-custom {
    background-color: var(--accent-color);
    color: var(--primary-dark) !important;
    border: 2px solid var(--accent-color);
    padding: 10px 24px;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed) ease;
}

.btn-accent-custom:hover {
    background-color: transparent;
    color: var(--accent-color) !important;
    border-color: var(--accent-color);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--bg-white) !important;
    border: 2px solid var(--bg-white);
    padding: 10px 24px;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed) ease;
}

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

/* Header & Navbar */
.navbar-custom {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-soft);
    padding: 12px 0;
    transition: all var(--transition-speed) ease;
}

.navbar-custom .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.navbar-custom .navbar-brand .brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    margin-left: 8px;
}

.navbar-custom .navbar-brand .brand-text span:first-child {
    color: var(--primary-dark);
    font-size: 1.68rem;
    font-weight: 800;
}

.navbar-custom .navbar-brand .brand-text span:last-child {
    color: var(--accent-hover);
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 700;
    margin-top: 4px;
}

.navbar-custom .navbar-brand .logo {
    width: 76px;
    height: 76px;
}

.logo {
    background-color: var(--bg-white);
    border: 1px solid var(--accent-color);
    padding: 4px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar-custom .navbar-brand span {
    color: var(--accent-color);
}

.navbar-custom .nav-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    position: relative;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 16px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: calc(100% - 32px);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--accent-color);
}

@media (min-width: 992px) {
    .navbar-custom .dropdown:hover > .dropdown-menu,
    .navbar-custom .dropdown:focus-within > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar-custom .dropdown:hover > .dropdown-toggle,
    .navbar-custom .dropdown:focus-within > .dropdown-toggle {
        color: var(--accent-color);
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(15, 45, 82, 0.9), rgba(7, 23, 43, 0.95)), url('../img/landing/documentos-inss.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0 100px 0;
    color: var(--bg-white);
}

.hero-section h1 {
    color: var(--bg-white);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 650px;
}

/* Section Common Styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin-top: 15px;
}

.section-title-center {
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.section-title-center h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto 0 auto;
}

/* Cards & Grid for Areas */
.area-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-soft);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition-speed) ease;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.area-card:hover::before {
    transform: scaleY(1);
}

.area-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.area-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.area-card ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 25px;
}

.area-card ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.area-card ul li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

/* Differentials */
.differential-item {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    height: 100%;
    transition: all var(--transition-speed) ease;
    border: 1px solid transparent;
}

.differential-item:hover {
    background-color: var(--bg-white);
    border-color: rgba(201, 162, 39, 0.2);
    box-shadow: var(--shadow-soft);
}

.differential-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.differential-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.differential-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* About Resumo */
.about-section {
    background-color: var(--bg-light);
}

.about-img-wrapper {
    position: relative;
}

.about-img-wrapper img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--accent-color);
    border-radius: var(--border-radius-md);
    top: 20px;
    left: -20px;
    z-index: -1;
}

.dra-andreia-profile {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-md);
    padding: 35px;
    box-shadow: var(--shadow-soft);
    margin: 15px 0;
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 20px;
}

.testimonial-stars {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.testimonial-info {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ Custom Accordion */
.accordion-custom .accordion-item {
    border: none;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    border-radius: var(--border-radius-md) !important;
    overflow: hidden;
}

.accordion-custom .accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--bg-white);
    padding: 20px 25px;
    border: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background-color: rgba(15, 45, 82, 0.05);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-custom .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230F2D52'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-custom .accordion-body {
    padding: 20px 25px;
    color: var(--text-color);
    background-color: var(--bg-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* CTA Banner Section */
.cta-section {
    background: linear-gradient(rgba(15, 45, 82, 0.95), rgba(15, 45, 82, 0.95)), url('../img/landing/atendimento-online.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: var(--bg-white);
    text-align: center;
}

.cta-section h2 {
    color: var(--bg-white);
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.85);
}

/* Contact Info & Form */
.contact-info-box {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    height: 100%;
}

.contact-info-box h3 {
    color: var(--bg-white);
    margin-bottom: 30px;
    font-size: 1.75rem;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-text h5 {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-info-text p, .contact-info-text a {
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 0;
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-medium);
}

.form-control-custom {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 12px 18px;
    font-size: 0.95rem;
    background-color: var(--bg-light);
    color: var(--text-color);
    transition: all var(--transition-speed) ease;
}

.form-control-custom:focus {
    background-color: var(--bg-white);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
    outline: none;
}

/* Map Embed Wrapper */
.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 350px;
}

/* Blog Styles */
.blog-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: all var(--transition-speed) ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 25px;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: var(--primary-color);
}

.blog-card-title a:hover {
    color: var(--accent-color);
}

.blog-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.blog-previdenciario-banner {
    background: linear-gradient(rgba(15, 45, 82, 0.88), rgba(7, 23, 43, 0.92)), url('../img/landing/documentos-inss.jpg') no-repeat center center;
    background-size: cover;
}

.blog-banner-lead {
    max-width: 760px;
    margin: 0 auto 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
}

.blog-featured-card {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(15, 45, 82, 0.1);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-medium);
}

.blog-featured-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.blog-featured-body {
    position: relative;
    padding: 34px;
}

.blog-featured-body .blog-card-category {
    position: static;
    display: inline-flex;
    margin-bottom: 18px;
    border-radius: 8px;
}

.blog-featured-body h2 {
    font-size: 1.9rem;
    margin-bottom: 14px;
}

.blog-featured-body p {
    color: var(--text-muted);
    margin-bottom: 22px;
}

.blog-cta-box {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.blog-cta-box h4 {
    color: var(--bg-white);
    border-bottom-color: rgba(255, 255, 255, 0.18);
}

.blog-cta-box p {
    color: rgba(255, 255, 255, 0.78);
}

/* Footer Styles */
.footer-section {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 20px 0;
    font-size: 0.9rem;
    border-top: 4px solid var(--accent-color);
}

.footer-section h4 {
    color: var(--bg-white);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a::before {
    content: '›';
    color: var(--accent-color);
    margin-right: 8px;
    font-weight: bold;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
    border-radius: 50%;
    margin-right: 10px;
    transition: all var(--transition-speed) ease;
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Page Banner (Internal Pages) */
.page-banner {
    background: linear-gradient(rgba(15, 45, 82, 0.85), rgba(7, 23, 43, 0.9)), url('../img/landing/atendimento-online.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: var(--bg-white);
    margin-bottom: 0;
}

.page-banner h1 {
    color: var(--bg-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb-custom {
    font-size: 0.9rem;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom a:hover {
    color: var(--accent-color);
}

.breadcrumb-custom .active {
    color: var(--accent-color);
}

/* Sidebar for Internal Pages */
.sidebar-box {
    background-color: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-md);
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(15, 45, 82, 0.1);
}

.sidebar-menu {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.sidebar-menu li {
    margin-bottom: 12px;
}

.sidebar-menu li a {
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed) ease;
}

.sidebar-menu li a:hover, .sidebar-menu li.active a {
    background-color: var(--primary-color);
    color: var(--bg-white) !important;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.4rem;
    }
    .navbar-custom .nav-link::after {
        display: none;
    }
    .navbar-custom .nav-link {
        padding: 10px 0 !important;
    }
    .navbar-custom .btn-primary-custom {
        margin-top: 15px;
        display: inline-block;
    }
}

/* Extra Utility Classes */
.text-justify {
    text-align: justify;
}

/* Landing Page - Direito Previdenciario */
.landing-previdenciaria > section.hero-section,
.landing-previdenciaria > section.section-padding,
.landing-previdenciaria > section.cta-section {
    display: none;
}

.lp-main {
    background-color: #ffffff;
}

.lp-hero {
    background:
        linear-gradient(90deg, rgba(7, 23, 43, 0.95) 0%, rgba(15, 45, 82, 0.84) 38%, rgba(15, 45, 82, 0.22) 66%, rgba(15, 45, 82, 0.02) 100%),
        url('../img/logo_ig.jpg') right 38% / cover no-repeat;
    color: var(--bg-white);
    padding: 92px 0 72px;
    position: relative;
}

.lp-hero-form-column {
    align-self: flex-start;
    display: flex;
    justify-content: flex-end;
    padding-top: 8px;
}

@media (min-width: 992px) {
    .lp-hero-form-column {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 340px;
        padding: 0;
        z-index: 10;
        transform: none !important;
    }
}

.lp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.lp-kicker::before {
    content: '';
    width: 28px;
    height: 2px;
    background-color: var(--accent-color);
}

.lp-hero h1 {
    color: var(--bg-white);
    font-size: 3.35rem;
    line-height: 1.08;
    max-width: 780px;
    margin-bottom: 20px;
}

.lp-lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.16rem;
    max-width: 680px;
    margin-bottom: 28px;
}

.lp-hero-actions,
.lp-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.lp-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.86);
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 0.88rem;
}

.lp-trust-row i {
    color: var(--accent-color);
}

.lp-form-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    max-width: 340px;
    padding: 18px;
    width: 100%;
}

.lp-form-head span {
    color: var(--accent-hover);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.lp-form-head h2 {
    font-family: var(--font-body);
    font-size: 1.08rem;
    margin: 4px 0 4px;
}

.lp-form-head p,
.lp-form-note {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.lp-form-note {
    margin: 10px 0 0;
}

.lp-form-card .mb-3 {
    margin-bottom: 0.55rem !important;
}

.lp-form-card .form-label {
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.lp-form-card .form-control-custom {
    font-size: 0.84rem;
    padding: 7px 10px;
}

.lp-form-card textarea.form-control-custom {
    min-height: 68px;
}

.lp-form-card .btn {
    font-size: 0.9rem;
    padding-bottom: 0.7rem !important;
    padding-top: 0.7rem !important;
}

.lp-strip {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 22px 0;
    border-top: 3px solid var(--accent-color);
}

.lp-strip strong,
.lp-strip span {
    display: block;
}

.lp-strip strong {
    color: var(--accent-light);
    font-size: 1rem;
}

.lp-strip span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.lp-service-card {
    display: block;
    height: 100%;
    min-height: 260px;
    background-color: var(--bg-white);
    border: 1px solid rgba(15, 45, 82, 0.1);
    border-radius: 8px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.lp-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.lp-service-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--primary-dark);
    background-color: var(--accent-color);
    border-radius: 8px;
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.lp-service-card h3 {
    font-family: var(--font-body);
    font-size: 1.18rem;
    margin-bottom: 12px;
}

.lp-service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.lp-image-band {
    background-color: #eef3f7;
}

.lp-image-band img,
.lp-proof img,
.lp-final-img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
}

.lp-image-band img {
    aspect-ratio: 4 / 3;
}

.lp-check-list {
    list-style: none;
    padding-left: 0;
    margin: 22px 0 26px;
}

.lp-check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
}

.lp-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-hover);
    font-weight: 800;
}

.lp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.lp-step {
    background-color: var(--bg-light);
    border: 1px solid rgba(15, 45, 82, 0.08);
    border-radius: 8px;
    padding: 24px;
    min-height: 220px;
}

.lp-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-weight: 800;
    margin-bottom: 18px;
}

.lp-step h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
}

.lp-step p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0;
}

.lp-proof {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 0;
}

.lp-proof h2 {
    color: var(--bg-white);
}

.lp-proof p {
    color: rgba(255, 255, 255, 0.82);
}

.lp-mini-box {
    height: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 18px;
}

.lp-mini-box strong,
.lp-mini-box span {
    display: block;
}

.lp-mini-box strong {
    color: var(--accent-light);
    margin-bottom: 8px;
}

.lp-mini-box span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.lp-review-section {
    background-color: #f7fafc;
}

.lp-review-section h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.lp-review-section p {
    color: var(--text-muted);
}

.lp-review-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 18px;
    border-radius: 8px;
    background-color: var(--bg-white);
    border: 1px solid rgba(15, 45, 82, 0.1);
    box-shadow: var(--shadow-soft);
}

.lp-review-note i {
    color: var(--accent-hover);
    font-size: 1.35rem;
    flex-shrink: 0;
}

.lp-review-note span {
    color: var(--text-muted);
    font-size: 0.94rem;
}

.lp-review-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(15, 45, 82, 0.1);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
}

.lp-rating-input {
    display: inline-flex;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    background-color: var(--bg-light);
    border: 1px solid rgba(15, 45, 82, 0.08);
}

.lp-star {
    width: 38px;
    height: 38px;
    border: 0;
    background-color: transparent;
    color: #c9ced6;
    font-size: 1.35rem;
    line-height: 1;
    border-radius: 8px;
    transition: color var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

.lp-star:hover,
.lp-star.is-active {
    color: var(--accent-color);
    background-color: rgba(201, 162, 39, 0.1);
}

.lp-consent-check {
    align-items: flex-start;
    background-color: #f8fafc;
    border: 1px solid rgba(15, 45, 82, 0.18);
    border-radius: var(--border-radius-md);
    display: flex;
    gap: 10px;
    padding: 14px 16px;
}

.lp-consent-check .form-check-input {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 45, 82, 0.08);
    flex: 0 0 auto;
    height: 1.25rem;
    margin-left: 0;
    margin-top: 0.18rem;
    width: 1.25rem;
}

.lp-consent-check .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--primary-dark);
}

.lp-consent-check .form-check-input:focus {
    border-color: var(--accent-hover);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.28);
}

.lp-consent-check .form-check-label {
    color: var(--primary-dark);
    font-weight: 600;
}

.lp-public-reviews {
    margin-top: 44px;
}

.lp-public-reviews h3 {
    font-size: 1.65rem;
    margin-bottom: 0;
}

.lp-public-review-list {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-public-review-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(15, 45, 82, 0.08);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    padding: 22px;
}

.lp-public-review-stars {
    color: var(--accent-color);
    letter-spacing: 0;
    margin-bottom: 12px;
}

.lp-public-review-card p {
    margin-bottom: 16px;
}

.lp-public-review-card strong {
    color: var(--primary-color);
    display: block;
}

.lp-public-review-card span {
    color: var(--text-muted);
    display: block;
    font-size: 0.86rem;
}

.lp-public-reviews-empty {
    background-color: rgba(255, 255, 255, 0.72);
    border: 1px dashed rgba(15, 45, 82, 0.18);
    border-radius: var(--border-radius-md);
    color: var(--text-muted);
    padding: 18px;
}

.lp-final-cta {
    background:
        linear-gradient(90deg, rgba(7, 23, 43, 0.96), rgba(15, 45, 82, 0.93));
    color: var(--bg-white);
    padding: 74px 0;
}

.lp-final-cta h2 {
    color: var(--bg-white);
    font-size: 2.35rem;
}

.lp-final-cta p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    max-width: 720px;
}

.lp-final-img {
    aspect-ratio: 16 / 9;
    margin-bottom: 16px;
}

@media (min-width: 1400px) {
    .lp-hero {
        background:
            linear-gradient(90deg, rgba(7, 23, 43, 0.95) 0%, rgba(15, 45, 82, 0.82) 35%, rgba(15, 45, 82, 0.18) 62%, rgba(15, 45, 82, 0.02) 100%),
            url('../img/logo_ig.jpg') right 36% / cover no-repeat;
    }

    .lp-hero-form-column {
        transform: translateX(10px);
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .lp-hero {
        background:
            linear-gradient(90deg, rgba(7, 23, 43, 0.95) 0%, rgba(15, 45, 82, 0.86) 42%, rgba(15, 45, 82, 0.34) 72%, rgba(15, 45, 82, 0.1) 100%),
            url('../img/logo_ig.jpg') right 40% / cover no-repeat;
    }

    .lp-hero-form-column {
        transform: translateX(8px);
    }
}

@media (max-width: 991.98px) {
    .lp-hero {
        padding: 72px 0 56px;
        background:
            linear-gradient(rgba(7, 23, 43, 0.9), rgba(15, 45, 82, 0.82)),
            url('../img/logo_ig.jpg') center 34% / cover no-repeat;
    }

    .lp-hero-form-column {
        display: block;
        padding-top: 0;
        transform: none;
    }

    .lp-form-card {
        max-width: none;
    }

    .lp-hero h1 {
        font-size: 2.45rem;
    }

    .lp-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-public-review-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .navbar-custom .navbar-brand .logo {
        width: 58px;
        height: 58px;
    }

    .navbar-custom .navbar-brand .brand-text span:first-child {
        font-size: 1.28rem;
    }

    .navbar-custom .navbar-brand .brand-text span:last-child {
        font-size: 0.86rem;
    }

    .lp-hero {
        background:
            linear-gradient(rgba(7, 23, 43, 0.86), rgba(15, 45, 82, 0.78)),
            url('../img/logo_ig.jpg') center 32% / cover no-repeat;
    }

    .lp-hero h1 {
        font-size: 2rem;
    }

    .lp-lead {
        font-size: 1rem;
    }

    .lp-form-card {
        padding: 22px;
    }

    .lp-steps {
        grid-template-columns: 1fr;
    }

    .lp-public-review-list {
        grid-template-columns: 1fr;
    }

    .lp-hero-actions .btn,
    .lp-final-actions .btn {
        width: 100%;
    }
}

/* Admin review management */
.admin-avaliacoes-page {
    background-color: #f4f6f8;
}

.admin-reviews-header {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 56px 0 42px;
}

.admin-reviews-header h1 {
    color: var(--bg-white);
    font-size: 2.2rem;
    margin: 10px 0;
}

.admin-reviews-header p {
    color: rgba(255, 255, 255, 0.76);
    max-width: 720px;
}

.admin-reviews-content {
    padding: 32px 0 64px;
}

.admin-review-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.admin-review-stats > div {
    background-color: var(--bg-white);
    border: 1px solid rgba(15, 45, 82, 0.08);
    border-radius: var(--border-radius-md);
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.admin-review-stats span {
    display: block;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.admin-review-stats strong {
    color: var(--text-muted);
    display: block;
    font-size: 0.82rem;
    margin-top: 6px;
}

.admin-review-toolbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.admin-reviews-empty {
    align-items: center;
    background-color: var(--bg-white);
    border: 1px dashed rgba(15, 45, 82, 0.22);
    border-radius: var(--border-radius-md);
    color: var(--text-muted);
    display: flex;
    gap: 12px;
    justify-content: center;
    min-height: 112px;
    padding: 24px;
}

.admin-reviews-empty i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.admin-review-list {
    display: grid;
    gap: 14px;
}

.admin-review-item {
    background-color: var(--bg-white);
    border: 1px solid rgba(15, 45, 82, 0.08);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    padding: 18px;
}

.admin-review-item[data-status="aprovada"] {
    border-left-color: #198754;
}

.admin-review-item[data-status="reprovada"] {
    border-left-color: #6c757d;
}

.admin-review-title-row {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.admin-review-title-row h2 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.admin-review-title-row p {
    color: var(--text-muted);
    font-size: 0.86rem;
    margin-bottom: 0;
}

.admin-review-stars {
    color: var(--accent-color);
    font-size: 1.05rem;
    letter-spacing: 0;
    margin: 10px 0;
}

.admin-review-message {
    margin-bottom: 14px;
    white-space: pre-wrap;
}

.admin-review-meta {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 0;
}

.admin-review-meta dt {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-review-meta dd {
    font-size: 0.84rem;
    margin-bottom: 0;
    overflow-wrap: anywhere;
}

.admin-review-actions {
    border-left: 1px solid rgba(15, 45, 82, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 18px;
}

.admin-review-actions textarea {
    resize: vertical;
}

@media (max-width: 991.98px) {
    .admin-review-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-review-item {
        grid-template-columns: 1fr;
    }

    .admin-review-actions {
        border-left: 0;
        border-top: 1px solid rgba(15, 45, 82, 0.08);
        padding-left: 0;
        padding-top: 16px;
    }
}

@media (max-width: 575.98px) {
    .admin-review-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-review-toolbar .btn-group {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-review-stats,
    .admin-review-meta {
        grid-template-columns: 1fr;
    }
}

/* Benefit detail pages */
.beneficio-page {
    background-color: #f6f8fb;
}

.beneficio-hero {
    background:
        linear-gradient(90deg, rgba(7, 23, 43, 0.96), rgba(15, 45, 82, 0.88)),
        url('../img/landing/documentos-inss.jpg') center / cover no-repeat;
    color: var(--bg-white);
    padding: 68px 0 76px;
}

.beneficio-hero .breadcrumb a,
.beneficio-hero .breadcrumb-item,
.beneficio-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.78);
}

.beneficio-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.55);
}

.beneficio-hero-content {
    max-width: 850px;
}

.beneficio-hero h1 {
    color: var(--bg-white);
    font-size: 3rem;
    margin: 12px 0 16px;
}

.beneficio-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
    margin-bottom: 26px;
    max-width: 760px;
}

.beneficio-content {
    background-color: #f6f8fb;
}

.beneficio-article {
    background-color: var(--bg-white);
    border: 1px solid rgba(15, 45, 82, 0.08);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    padding: 34px;
}

.beneficio-article section + section {
    border-top: 1px solid rgba(15, 45, 82, 0.08);
    margin-top: 30px;
    padding-top: 30px;
}

.beneficio-section-label {
    color: var(--accent-hover);
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.beneficio-article h2 {
    font-size: 1.65rem;
    margin-bottom: 14px;
}

.beneficio-article p {
    color: #475160;
}

.beneficio-guidance-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.beneficio-guidance-item {
    align-items: flex-start;
    background-color: #f8fafc;
    border: 1px solid rgba(15, 45, 82, 0.08);
    border-radius: var(--border-radius-md);
    display: flex;
    gap: 12px;
    padding: 16px;
}

.beneficio-guidance-item i {
    color: #198754;
    font-size: 1.2rem;
    line-height: 1.4;
}

.beneficio-guidance-item p {
    margin-bottom: 0;
}

.beneficio-document-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.beneficio-document-list li {
    background-color: #f8fafc;
    border-left: 3px solid var(--accent-color);
    border-radius: var(--border-radius-sm);
    color: #475160;
    padding: 12px 14px;
}

.beneficio-alert {
    background-color: #eef3f7;
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.beneficio-alert h2 {
    font-size: 1.35rem;
}

.beneficio-sidebar {
    background-color: var(--bg-white);
    border: 1px solid rgba(15, 45, 82, 0.08);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: 18px;
    padding: 24px;
}

.beneficio-sidebar h2 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.beneficio-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.beneficio-sidebar li + li {
    border-top: 1px solid rgba(15, 45, 82, 0.08);
}

.beneficio-sidebar li a {
    align-items: center;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
}

.beneficio-sidebar li a::after {
    content: "\F285";
    font-family: "bootstrap-icons";
    font-size: 0.8rem;
}

.beneficio-sidebar-cta {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.beneficio-sidebar-cta i {
    color: var(--accent-color);
    font-size: 2rem;
}

.beneficio-sidebar-cta h2 {
    color: var(--bg-white);
    margin-top: 10px;
}

.beneficio-sidebar-cta p {
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 991.98px) {
    .beneficio-hero h1 {
        font-size: 2.35rem;
    }

    .beneficio-guidance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .beneficio-hero {
        padding: 52px 0;
    }

    .beneficio-hero h1 {
        font-size: 2rem;
    }

    .beneficio-article {
        padding: 22px;
    }
}

