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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #e9e9e9;
    background-attachment: fixed;
    min-height: 100vh;
}
.share-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #5e8c81;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.share-btn:hover {
    background: #5e8c81;
    transform: scale(1.1);
}

.share-btn img {
    width: 55%;
    height: 55%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.share-btn:hover img {
    filter: brightness(0) invert(1);
}

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

/* Header Styles */
header {
    background: #5e8c81;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    height: 70px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
}

nav a:hover,
nav a.active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #FFFFFF;
    cursor: pointer;
    padding: 10px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #5e8c81;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    flex-direction: column;
    gap: 0;
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: none;
}

/* Breadcrumb */
.breadcrumb {
    padding: 100px 0 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.breadcrumb-nav {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-nav a {
    color: #5e8c81;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #4a756b;
}

.separator {
    margin: 0 10px;
    color: #999;
}

.current {
    color: #333;
    font-weight: 500;
}

/* Event Header */
.event-header {
    padding: 40px 0 60px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.event-meta-top {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.event-type {
    background: #5e8c81;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-status {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-status.available {
    background: #28a745;
    color: white;
}

.event-status.full {
    background: #dc3545;
    color: white;
}

.event-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.event-subtitle {
    font-size: 1.4rem;
    color: #555;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.4;
    max-width: 900px;
}

.event
-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    font-size: 2rem;
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.event-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.register-btn,
.register-btn-large {
    background: #5e8c81;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-btn:hover,
.register-btn-large:hover {
    background: #4a756b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 140, 129, 0.3);
}

.register-btn-large {
    font-size: 1.2rem;
    padding: 18px 45px;
}

.share-event-btn {
    background: transparent;
    color: #5e8c81;
    border: 2px solid #5e8c81;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-event-btn:hover {
    background: #5e8c81;
    color: white;
    transform: translateY(-2px);
}

/* Featured Image */
.featured-image {
    padding: 40px 0;
}

.image-container {
    max-width: 1000px;
    margin: 0 auto;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #5e8c81, #4a756b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 15px;
}

.image-content {
    text-align: center;
    padding: 20px;
}

.image-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.image-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    line-height: 1.5;
}

.photo-credit {
    font-weight: 500;
    color: #5e8c81;
}

/* Event Content */
.event-content {
    padding: 40px 0 80px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.event-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.7;
}

.event-body p {
    margin-bottom: 20px;
}

.event-body h3 {
    font-size: 1.8rem;
    color: #5e8c81;
    margin: 40px 0 20px;
    font-weight: 700;
}

.event-body ul, .event-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.event-body li {
    margin-bottom: 12px;
}

.event-body li strong {
    color: #5e8c81;
}

/* Highlight Box */
.highlight-box {
    background: #e8f4f2;
    border-left: 4px solid #5e8c81;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.highlight-box h4 {
    color: #5e8c81;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.highlight-box p {
    margin-bottom: 15px;
}

.highlight-box ul {
    margin: 15px 0;
    padding-left: 25px;
}

.highlight-box li {
    margin-bottom: 8px;
}

/* Schedule */
.schedule {
    margin: 30px 0;
}

.schedule-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: #e8f4f2;
    transform: translateX(5px);
}

.schedule-time {
    color: #5e8c81;
    font-weight: 700;
    font-size: 1rem;
    min-width: 100px;
    padding-top: 2px;
}

.schedule-content h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.schedule-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Instructor Profile */
.instructor-profile {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 30px 0;
}

.instructor-avatar {
    width: 100px;
    height: 100px;
    background: #5e8c81;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    flex-shrink: 0;
}

.instructor-info h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
}

.instructor-title {
    color: #5e8c81;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.instructor-bio {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.instructor-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.credential {
    background: white;
    color: #5e8c81;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #5e8c81;
}

/* Info Box */
.info-box {
    background: #fff8e1;
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.info-box h4 {
    color: #f57c00;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.info-box p {
    margin-bottom: 10px;
}

.info-box ul {
    margin: 10px 0;
    padding-left: 25px;
}

.info-box li {
    margin-bottom: 8px;
}

/* FAQ */
.faq {
    margin: 30px 0;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #e8f4f2;
}

.faq-item h4 {
    color: #5e8c81;
    font-size: 1.1rem;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h4:after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #5e8c81, #4a756b);
    border-radius: 16px;
    margin: 40px 0;
    color: white;
}

.cta-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-section .register-btn-large {
    background: white;
    color: #5e8c81;
}

.cta-section .register-btn-large:hover {
    background: #f0f0f0;
    color: #4a756b;
}

.spots-remaining {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff8e1;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

.sidebar-section h3 {
    color: #5e8c81;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Event Info Card */
.event-info-card .info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

.info-item .info-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.info-item .info-text {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.sidebar-register-btn {
    width: 100%;
    background: #5e8c81;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-register-btn:hover {
    background: #4a756b;
    transform: translateY(-2px);
}

/* Related Events */
.related-events {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-event-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.related-event-item:hover {
    background: #e8f4f2;
    transform: translateX(5px);
}

.related-event-date {
    background: #5e8c81;
    color: white;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.related-event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.related-event-date .month {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
}

.related-event-content h4 {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.3;
}

.related-event-location {
    color: #5e8c81;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Newsletter Sidebar */
.newsletter-sidebar p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.newsletter-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form-sidebar input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
}

.newsletter-form-sidebar button {
    background: #5e8c81;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form-sidebar button:hover {
    background: #4a756b;
}

/* Footer */
footer {
    background: #f5f5f5;
    padding: 60px 0 30px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

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

.footer-section h3 {
    color: #5e8c81;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #5e8c81;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #5e8c81;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4a756b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: #666666;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #5e8c81;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 900px) {
    .mobile-menu {
        display: block;
    }

    nav ul {
        display: none;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sidebar {
        order: -1;
    }

    .event-quick-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .event-title {
        font-size: 2.2rem;
    }

    .event-subtitle {
        font-size: 1.1rem;
    }

    .main-content {
        padding: 30px 25px;
    }

    .event-actions {
        flex-direction: column;
    }

    .register-btn,
    .share-event-btn {
        width: 100%;
    }

    .image-placeholder {
        height: 300px;
    }

    .instructor-profile {
        flex-direction: column;
        text-align: center;
    }

    .instructor-avatar {
        margin: 0 auto;
    }

    .instructor-credentials {
        justify-content: center;
    }

    .schedule-item {
        flex-direction: column;
        gap: 10px;
    }

    .schedule-time {
        min-width: auto;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .event-header {
        padding: 30px 0 40px;
    }

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

    .event-subtitle {
        font-size: 1rem;
    }

    .main-content {
        padding: 25px 20px;
    }

    .event-body {
        font-size: 1rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .breadcrumb {
        padding: 90px 0 15px;
    }

    .breadcrumb-nav {
        font-size: 0.8rem;
    }

    .current {
        display: block;
        margin-top: 5px;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .cta-section h3 {
        font-size: 1.5rem;
    }

    .sidebar-section {
        padding: 20px;
    }
}
/* Feedback Block */
.feedback-block {
    margin: 25px 0 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(94, 140, 129, 0.1), rgba(94, 140, 129, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(94, 140, 129, 0.2);
}

.feedback-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.views-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5e8c81;
}

.views-counter .icon {
    width: 24px;
    height: 24px;
    color: #5e8c81;
}

.views-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.views-label {
    font-size: 0.95rem;
    color: #666;
}

.feedback-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.feedback-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
}

.feedback-btn .icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.feedback-btn .count {
    min-width: 25px;
    text-align: center;
}

.feedback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.like-btn:hover {
    border-color: #5e8c81;
    background: rgba(94, 140, 129, 0.05);
}

.like-btn.active {
    background: #5e8c81;
    border-color: #5e8c81;
    color: white;
}

.like-btn.active .icon {
    fill: white;
    stroke: white;
}

.dislike-btn:hover {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.dislike-btn.active {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
}

.dislike-btn.active .icon {
    fill: white;
    stroke: white;
}

/* Responsive para o feedback block */
@media (max-width: 600px) {
    .feedback-stats {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .feedback-actions {
        width: 100%;
        justify-content: center;
    }
    
    .views-counter {
        width: 100%;
        justify-content: center;
    }
}