/* =============================================================================
   SIMMP - DESIGN SYSTEM & GLOBAL CSS
   Sindicato do Magistério Municipal Público de Vitória da Conquista
   ============================================================================= */

/* ── Custom Properties & Design Tokens ───────────────────────────────────── */
:root {
    /* Harmonious Greens Palette (Tailored HSL) */
    --primary: hsl(136, 40%, 25%);       /* #275931 - Deep Rich Green */
    --primary-light: hsl(136, 40%, 35%); /* #377d45 - Energetic Medium Green */
    --primary-dark: hsl(136, 45%, 16%);  /* #15321b - Sleek Dark Forest Green */
    --primary-glow: rgba(39, 89, 49, 0.15);
    
    /* Complementary & Neutrals */
    --accent: hsl(38, 90%, 50%);         /* Warm Golden Amber for actions */
    --accent-glow: rgba(245, 166, 35, 0.2);
    --accent-red: hsl(4, 70%, 55%);      /* Elegant alert/danger red */
    
    --bg-light: hsl(136, 25%, 98%);     /* Extremely soft background tint */
    --bg-white: #ffffff;
    --border-light: hsl(136, 12%, 90%);
    
    /* Slate / Dark Neutral for ultimate readability */
    --text-main: hsl(210, 24%, 16%);     /* Charcoal Blue/Slate */
    --text-muted: hsl(210, 14%, 46%);    /* Slate Grey */
    --text-light: #ffffff;
    
    /* Elevation & Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 12px 20px -3px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 24px 38px -3px rgba(0, 0, 0, 0.12), 0 8px 16px -6px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 20px rgba(39, 89, 49, 0.2);
    
    /* Radius & Layout */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ── Global Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Typography & Headings ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.25;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Top Bar ────────────────────────────────────────────────────────────── */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.top-social {
    display: flex;
    gap: 14px;
}

.top-social a {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 1rem;
}

.top-social a:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* ── Main Header & Navigation ────────────────────────────────────────────── */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--border-light);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
}

.logo-area img {
    height: 54px;
    transition: var(--transition-smooth);
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
}

.logo-fallback i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 4px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

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

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--text-main);
    box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-accent:hover {
    background-color: hsl(38, 90%, 55%);
    transform: translateY(-2px);
}

.filie-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ── Hero Home – Layout fiel ao simmp.com.br ──────────────────────────────── */
.hero-home {
    background-color: var(--bg-white);
    padding: 80px 0 60px;
    overflow: hidden;
    position: relative;
}

.hero-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    min-height: 420px;
}

.hero-home-text {
    position: relative;
    z-index: 2;
}

.hero-welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
    display: inline-block;
    box-shadow: 0 0 0 3px var(--primary-glow);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 3px var(--primary-glow); }
    50% { box-shadow: 0 0 0 8px rgba(39, 89, 49, 0.08); }
}

.hero-home-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.hero-highlight {
    color: var(--primary);
}

.hero-home-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-home-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Formas decorativas verdes do lado direito (réplica do original) */
.hero-home-shapes {
    position: relative;
    width: 100%;
    height: 420px;
}

.shape {
    position: absolute;
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.shape-1 {
    width: 320px;
    height: 320px;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    top: 20px;
    right: 0;
    border-radius: 30px;
    opacity: 0.9;
    box-shadow: var(--shadow-lg);
}

.shape-2 {
    width: 220px;
    height: 80px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    bottom: 60px;
    right: 40px;
    border-radius: 16px;
    opacity: 0.7;
}

.shape-3 {
    width: 80px;
    height: 180px;
    background-color: var(--primary-dark);
    top: 50px;
    right: 340px;
    border-radius: 16px;
    opacity: 0.5;
}

/* CTA Banner de Filiação (barra verde, estilo original) */
.cta-filiacao-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 40px 0;
}

.cta-filiacao-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-filiacao-text {
    max-width: 700px;
}

.cta-filiacao-title {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 400;
}

.cta-filiacao-title strong {
    font-weight: 800;
}

.cta-filiacao-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cta-filiacao-btn {
    background-color: var(--bg-white);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.cta-filiacao-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* Manter compatibilidade com páginas internas que usam hero-carousel */
.hero-carousel {
    position: relative;
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.hero-carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(39, 89, 49, 0.4) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 600px;
    margin-inline: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ── Content Grid Sections ───────────────────────────────────────────────── */
.section {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--bg-white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 20px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: var(--radius-sm);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ── Cards Design ───────────────────────────────────────────────────────── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-glow);
}

.card-img-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.card-title a {
    color: inherit;
}

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

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover i {
    transform: translateX(4px);
}

.read-more i {
    transition: var(--transition-smooth);
}

/* ── Split Layout for Sidebar ────────────────────────────────────────────── */
.layout-split {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 40px;
}

.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    position: relative;
}

/* ── List Widget Items ───────────────────────────────────────────────────── */
.widget-list {
    list-style: none;
}

.widget-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.widget-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.widget-item-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── Forms Design ───────────────────────────────────────────────────────── */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* ── Alerts ─────────────────────────────────────────────────────────────── */
.msg-container {
    margin-top: 20px;
}

.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.3s ease-out;
}

.alert-success {
    background-color: hsl(136, 40%, 94%);
    border-left: 5px solid var(--primary);
    color: var(--primary-dark);
}

.alert-error, .alert-danger {
    background-color: hsl(4, 70%, 95%);
    border-left: 5px solid var(--accent-red);
    color: var(--accent-red);
}

.alert-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
}

.alert-close:hover {
    opacity: 1;
}

/* ── WhatsApp Flutuante ──────────────────────────────────────────────────── */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--primary-dark);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ── Banner Hero Full Width ─────────────────────────────────────────────── */
.banner-hero-full {
    position: relative;
    width: 100%;
    min-height: 550px;
    overflow: hidden;
}

.banner-hero-full img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

/* ── Seção Depoimentos ──────────────────────────────────────────────────── */
.testimonial-section {
    background-color: var(--bg-light);
    padding: 100px 0;
    overflow: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-text-col {
    padding-right: 20px;
}

.testimonial-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.testimonial-label .dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.testimonial-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-img-col {
    position: relative;
}

.testimonial-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.testimonial-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
}

.testimonial-author-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--bg-white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.testimonial-author-name {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.testimonial-author-role {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ── Seção Lista de Transmissão (Newsletter) ────────────────────────────── */
.newsletter-section {
    padding: 100px 0 0;
    background-color: var(--bg-white);
}

.newsletter-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 420px;
}

.newsletter-img-col {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    overflow: visible;
}

.newsletter-phone {
    max-width: 300px;
    width: 75%;
    margin-top: -80px;
    position: relative;
    z-index: 2;
    display: block;
}

.newsletter-form-col {
    padding: 60px 60px 60px 40px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-title {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 30px;
}

.newsletter-title strong {
    font-weight: 800;
}

.newsletter-input {
    width: 100%;
    background-color: var(--bg-white);
    border: none;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.newsletter-submit {
    background-color: var(--bg-white);
    color: var(--primary-dark);
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-heading);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    margin-top: 10px;
    width: fit-content;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.newsletter-icon-circle {
    width: 28px;
    height: 28px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* ── Footer (Estilo Claro - igual simmp.com.br) ─────────────────────────── */
.main-footer {
    background-color: #fff;
    color: var(--text-main);
    padding: 0;
    border: none;
}

.footer-top-area {
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border-light);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-logo-col img {
    height: 60px;
}

.footer-social-box {
    background-color: hsl(136, 30%, 93%);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-social-box p {
    margin: 0;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    width: 34px;
    height: 34px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-social-icons a:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.footer-contact-area {
    padding: 40px 0;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 4px;
}

.footer-contact-text span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.footer-contact-text strong {
    display: block;
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 600;
}

.footer-bottom-bar {
    border-top: 1px solid var(--border-light);
    padding: 20px 0;
    font-size: 0.85rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
}

.footer-bottom-links a {
    color: var(--primary);
    font-weight: 500;
}

.footer-bottom-links a:hover {
    text-decoration: underline;
}

.divye-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-main);
}



/* ── Keyframe Animations ─────────────────────────────────────────────────── */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive Styling (Mobile First) ────────────────────────────────────── */
@media (max-width: 992px) {
    .layout-split {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }

    .hero-home-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-home-shapes {
        height: 260px;
    }

    .shape-1 {
        width: 240px;
        height: 240px;
        right: calc(50% - 120px);
    }

    .shape-2 {
        right: calc(50% - 110px);
    }

    .shape-3 {
        right: calc(50% + 130px);
    }

    .hero-home-subtitle {
        margin-inline: auto;
    }

    .hero-home-actions {
        justify-content: center;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-author-card {
        left: 20px;
    }

    .newsletter-box {
        grid-template-columns: 1fr;
    }

    .newsletter-img-col {
        min-height: 300px;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-filiacao-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border-light);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px);
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateY(0);
    }
    
    .filie-btn {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        padding: 0 24px;
    }

    .hero-home {
        padding: 40px 0 30px;
    }

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

    .hero-home-shapes {
        height: 200px;
    }

    .cta-filiacao-title {
        font-size: 1.3rem;
    }
    
    .section {
        padding: 48px 0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-title {
        font-size: 1.8rem;
    }

    .newsletter-form-col {
        padding: 40px 24px;
    }

    .newsletter-title {
        font-size: 1.4rem;
    }

    .banner-hero-full img {
        height: 300px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
