:root {
    --primary-color: #01988e;
    --primary-hover: #0c4d43;
    --secondary-color: #f0f4f4;
    --secondary-hover: #e2ebeb;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #ffffff;
    --bg-gray: #f9fafa;
    --border-color: #e0e0e0;
    --sp-dark: #333333;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.12);
}

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

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

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

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

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

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #222;
}

/* SP Governo Top Bar */
.top-bar-sp {
    background-color: var(--sp-dark);
    padding: 8px 0;
    color: #fff;
    font-size: 0.85rem;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-sp img {
    height: 35px;
}

.social-sp {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-sp a {
    color: #fff;
    font-size: 1rem;
    opacity: 0.8;
}

.social-sp a:hover {
    opacity: 1;
}

.social-sp-text {
    margin-left: 5px;
    font-weight: 500;
}

/* Main Navigation */
.main-header {
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    position: absolute;
    left: 20px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

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

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

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

.nav-social {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 15px;
}

.nav-social a {
    color: var(--text-light);
    font-size: 1.1rem;
    background: #f4f4f4;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.nav-social a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Hero Section */
.hero {
    width: 100%;
    margin-bottom: -30px;
}

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

/* Quick Links */
.quick-links {
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.quick-links-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

.intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.intro-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.intro-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-content strong {
    color: var(--text-color);
}

.read-more-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more-link:hover {
    transform: translateX(5px);
}

.intro-elements .floating-element {
    position: absolute;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.el-a {
    top: -40px;
    left: 0;
    width: 120px;
    animation: float 6s ease-in-out infinite;
}

.el-b {
    bottom: -40px;
    right: 0;
    width: 100px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* News Section */
.news-section {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.news-image {
    display: block;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-content h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.news-content h3 a {
    color: var(--text-color);
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.news-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

.news-actions {
    text-align: center;
}

/* Social Follow */
.social-follow {
    padding: 60px 0;
    background-color: var(--bg-gray);
    border-top: 1px solid var(--border-color);
}

.social-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-large a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: var(--primary-color);
    font-size: 1.8rem;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.social-large a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.social-handle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Footer */
.footer-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.sp-footer {
    background-color: #fff;
    border-top: 1px solid var(--border-color);
    padding: 40px 0 0 0;
}

.sp-footer-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.sp-footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-sp {
    background-color: #f0f0f0;
    color: #555;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-sp:hover {
    background-color: #e0e0e0;
    color: #333;
}

.sp-footer-logos img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Page Hero */
.page-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f0f7f5 0%, #e8f4f1 100%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Guests Section */
.guests-section {
    padding: 70px 0;
}

.guests-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.guest-card {
    width: 100%;
}

/* Top row: photo + name/role */
.guest-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 24px;
}

.guest-photo {
    flex-shrink: 0;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.guest-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.guest-title {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.guest-name {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin: 0;
}

.guest-role {
    font-size: 1.1rem;
    color: #444;
    font-style: italic;
    margin: 0;
}

/* Full-width bio below photo+name row */
.guest-bio {
    font-size: 1rem;
    color: #333;
    line-height: 1.75;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
}

/* Divider between guests */
.guest-card+.guest-card {
    padding-top: 10px;
    border-top: none;
}

/* Footer banner container */
.footer-banner-container {
    padding: 40px 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-social {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: var(--shadow-md);
        padding: 20px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .header-container {
        justify-content: center;
    }

    .quick-links-grid {
        flex-direction: column;
    }

    .intro-elements {
        display: none;
    }

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

    .guests-grid {
        gap: 40px;
    }

    .guest-photo {
        width: 140px;
        height: 140px;
    }

    .guest-header {
        gap: 20px;
    }

    .guest-name {
        font-size: 1.2rem;
    }

    .page-title {
        font-size: 2rem;
    }
}

/* Schedule Section */
.schedule-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: #fff;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.tab-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.schedule-timeline {
    position: relative;
    padding-left: 35px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 11px;
    width: 2px;
    height: 100%;
    background-color: #e0e6e5;
}

.schedule-item {
    position: relative;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

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

.schedule-item::before {
    content: '';
    position: absolute;
    top: 35px;
    left: -41px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #e0e6e5;
}

.schedule-time {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.schedule-type {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #888;
    margin-bottom: 8px;
    display: block;
}

.schedule-title {
    font-size: 1.35rem;
    color: #111;
    margin-bottom: 18px;
    line-height: 1.4;
}

.schedule-details {
    margin-bottom: 15px;
}

.schedule-person {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    color: #444;
    line-height: 1.5;
}

.schedule-person i {
    color: var(--primary-color);
    margin-top: 5px;
    font-size: 0.9rem;
}

.schedule-person strong {
    color: #222;
    font-weight: 600;
}

.schedule-moderator {
    background-color: var(--bg-gray);
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 0.95rem;
    border-left: 3px solid #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.schedule-moderator i {
    color: #666;
}

.schedule-list {
    list-style: none;
    margin-top: 15px;
}

.schedule-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.schedule-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Local type modifier */
.schedule-item.type-local {
    border-left-color: #f39c12;
    background-color: #fffcf5;
}

.schedule-item.type-local::before {
    background-color: #f39c12;
}

.schedule-item.type-local .schedule-title {
    color: #d68910;
}

.schedule-item.type-local .schedule-person i {
    color: #f39c12;
}

@media (max-width: 768px) {
    .schedule-timeline {
        padding-left: 20px;
    }

    .schedule-timeline::before {
        left: 0;
    }

    .schedule-item {
        padding: 20px;
    }

    .schedule-item::before {
        left: -31px;
        width: 14px;
        height: 14px;
        top: 25px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}