        :root {
            --primary: #3f51b5;
            --secondary: #f50057;
            --dark: #303030;
            --light: #f5f5f5;
            --gray: #757575;
            --gradient: linear-gradient(135deg, #3f51b5 0%, #f50057 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        header {
            background: var(--gradient);
            color: white;
            padding: 1rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .logo i {
            font-size: 2.5rem;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        nav a:hover {
            color: rgba(255, 255, 255, 0.8);
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        }
        
        .hero {
            background: var(--gradient);
            color: white;
            padding: 5rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="white" opacity="0.05"/></svg>'), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150"><circle cx="75" cy="75" r="60" fill="white" opacity="0.05"/></svg>');
            background-position: 10% 20%, 90% 60%;
            background-repeat: no-repeat;
            animation: floatBubbles 15s infinite linear;
        }
        
        @keyframes floatBubbles {
            0% {
                background-position: 10% 20%, 90% 60%;
            }
            50% {
                background-position: 15% 25%, 85% 55%;
            }
            100% {
                background-position: 10% 20%, 90% 60%;
            }
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out 0.3s;
            animation-fill-mode: both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 0.5rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            z-index: 1;
            animation: fadeInUp 1s ease-out 0.6s;
            animation-fill-mode: both;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            transform: translateX(-100%);
            transition: all 0.3s ease;
            z-index: -1;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.2);
        }
        
        .btn:hover:before {
            transform: translateX(0);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid white;
        }
        
        .podcast-platforms {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
            animation: fadeInUp 1s ease-out 0.9s;
            animation-fill-mode: both;
        }
        
        .platform-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.5rem;
            background-color: white;
            color: var(--dark);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .platform-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.05) 100%);
            transform: translateX(-100%);
            transition: all 0.3s ease;
            z-index: -1;
        }
        
        .platform-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.2);
        }
        
        .platform-btn:hover:before {
            transform: translateX(0);
        }
        
        .platform-btn i {
            transition: all 0.3s ease;
        }
        
        .platform-btn:hover i {
            transform: scale(1.1);
        }
        
        section {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:before {
            content: '';
            position: absolute;
            width: 30px;
            height: 3px;
            background-color: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            transition: all 0.3s ease;
        }
        
        .section-title:hover h2:before {
            width: 50px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 1.5rem auto 0;
            color: var(--gray);
            font-size: 1.2rem;
        }
        
        .episodes-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .episode-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: all 0.5s ease;
            position: relative;
        }
        
        .episode-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .episode-card:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease;
        }
        
        .episode-card:hover:before {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .episode-card iframe {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            width: 100%;
            transition: all 0.5s ease;
        }
        
        .episode-card:hover iframe {
            filter: brightness(1.1);
        }
        
        .episode-date {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .episode-card:hover .episode-date {
            transform: translateY(-3px);
            box-shadow: 0 5px 8px rgba(0,0,0,0.15);
        }
        
        .episode-content {
            padding: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .episode-card:hover .episode-content {
            background-color: #fafafa;
        }
        
        .episode-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
            color: var(--dark);
        }
        
        .episode-card:hover .episode-content h3 {
            color: var(--primary);
        }
        
        .episode-content p {
            color: var(--gray);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        
        .episode-cta {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            color: var(--primary);
        }
        
        .episode-cta i {
            margin-right: 0.3rem;
            transition: all 0.3s ease;
        }
        
        .episode-card:hover .episode-cta i {
            transform: rotate(360deg);
        }
        
        /* Carrossel de Instagram */
        .instagram-carousel {
            position: relative;
            max-width: 1000px;
            margin: 0 auto 3rem;
            overflow: hidden;
        }
        
        .carousel-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .instagram-post {
            min-width: calc(33.33% - 20px);
            margin: 0 10px;
            flex: 0 0 auto;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        .instagram-post img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        
        .instagram-content {
            padding: 1rem;
        }
        
        .instagram-date {
            font-size: 0.8rem;
            color: var(--gray);
            margin-bottom: 0.5rem;
        }
        
        .instagram-content h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        .instagram-content p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            height: 60px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }
        
        .instagram-link {
            display: inline-block;
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        .carousel-controls {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .carousel-controls button {
            background-color: var(--primary);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }
        
        .carousel-controls button:hover {
            background-color: var(--secondary);
            transform: scale(1.1);
        }
        
        /* Estilo para dropdown nos grupos */
        .dropdown {
            position: relative;
            display: inline-block;
        }
        
        .dropdown-toggle {
            position: relative;
            padding-right: 2.5rem;
        }
        
        .dropdown-toggle:after {
            content: '\f107';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s ease;
        }
        
        .dropdown:hover .dropdown-toggle:after {
            transform: translateY(-50%) rotate(180deg);
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 0.5rem 0;
            margin-top: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .dropdown:hover .dropdown-menu,
        .dropdown:focus-within .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-item {
            display: block;
            padding: 0.75rem 1rem;
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: left;
        }
        
        .dropdown-item:hover {
            background-color: rgba(0,0,0,0.05);
            color: var(--primary);
            padding-left: 1.5rem;
        }
        
        .host-section {
            background-color: var(--primary);
            color: white;
        }
        
        .host-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: center;
        }
        
        .host-img {
            height: 350px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .host-img i {
            font-size: 8rem;
            color: white;
        }
        
        .host-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .host-info p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .groups-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .group-card {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .group-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        
        .group-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .group-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .group-card p {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }
        
        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            background-color: white;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--primary);
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            background-color: var(--secondary);
        }
        
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 0;
            text-align: center;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: left;
            margin-bottom: 2rem;
        }
        
        .footer-column h3 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            position: relative;
        }
        
        .footer-column h3::after {
            content: '';
            display: block;
            width: 30px;
            height: 3px;
            background-color: var(--secondary);
            margin-top: 0.5rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column a:hover {
            color: var(--secondary);
        }
        
        .copyright {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Player de rádio no rodapé */
        .radio-player {
            background: var(--gradient);
            padding: 1rem 0;
            width: 100%;
            border-top: 2px solid rgba(255, 255, 255, 0.2);
            position: sticky;
            bottom: 0;
            z-index: 90;
            box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
        }
        
        .player-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .player-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .player-artwork {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            background-color: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            animation: pulse 1.5s infinite ease-in-out;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }
        
        .player-artwork i {
            font-size: 1.8rem;
            color: white;
        }
        
        .player-details h4 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 0.2rem;
        }
        
        .player-details p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
        }
        
        .player-details .small-text {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .player-controls {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .player-btn {
            background-color: rgba(255, 255, 255, 0.15);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .player-btn:hover {
            background-color: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        .player-btn.play-btn {
            width: 60px;
            height: 60px;
            background-color: var(--secondary);
        }
        
        .player-btn.play-btn:hover {
            background-color: #ff2171;
        }
        
        .stream-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .status-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            position: relative;
        }
        
        .status-indicator.active {
            background-color: #4caf50;
            animation: blink 1.5s infinite;
        }
        
        @keyframes blink {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        
        #statusText {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }
        
        .player-volume {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .player-volume i {
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .player-volume i:hover {
            color: var(--secondary);
        }
        
        .volume-slider {
            -webkit-appearance: none;
            width: 100px;
            height: 5px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .volume-slider:hover {
            height: 7px;
        }
        
        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .volume-slider::-moz-range-thumb {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .instagram-post {
                min-width: calc(50% - 20px);
            }
            
            .player-container {
                flex-direction: column;
                gap: 1rem;
            }
            
            .player-info, .player-controls, .player-volume {
                width: 100%;
                justify-content: center;
            }
            
            .player-info {
                margin-bottom: 0.5rem;
            }
            
            .player-controls {
                margin-bottom: 0.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            nav ul {
                gap: 1rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .host-container {
                grid-template-columns: 1fr;
            }
            
            .host-img {
                height: 300px;
            }
            
            .instagram-post {
                min-width: calc(100% - 20px);
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                height: 0;
                overflow: hidden;
                padding: 0;
                margin: 0;
                transition: height 0.3s ease;
            }
            
            .dropdown.active .dropdown-menu {
                height: auto;
                padding: 0.5rem 0;
                margin-top: 0.5rem;
            }
            
            .dropdown-toggle:focus + .dropdown-menu,
            .dropdown-menu:hover {
                height: auto;
                padding: 0.5rem 0;
                margin-top: 0.5rem;
            }
            
            /* Ajustes no player da rádio para mobile */
            .radio-player {
                padding: 1rem 0 0.5rem;
            }
            
            .player-container {
                text-align: center;
            }
            
            .player-info {
                justify-content: center;
            }
            
            .player-details h4 {
                font-size: 1rem;
            }
            
            .player-details p {
                font-size: 0.8rem;
            }
            
            .player-btn.play-btn {
                width: 50px;
                height: 50px;
            }
            
            .stream-status {
                flex-direction: column;
                gap: 0.2rem;
            }
        }
        
        @media (max-width: 480px) {
            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .player-controls {
                gap: 0.5rem;
            }
            
            .volume-slider {
                width: 60px;
            }
            
            .player-container {
                padding: 0 0.5rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
                text-align: center;
            }
            
            .footer-column h3::after {
                margin: 0.5rem auto 0;
            }
        }
        
        #community {
  padding: 60px 0;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.community-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.community-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 360px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px;
  transition: transform 0.2s ease;
}

.community-card:hover {
  transform: translateY(-5px);
}

.date-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f50057;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
}

.community-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.channel-img {
  background: #3f51b5;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 12px;
}

.channel-info h4 {
  margin: 0;
  font-size: 16px;
}

.channel-info p {
  margin: 0;
  font-size: 14px;
  color: gray;
}

.community-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.community-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 15px;
}

.community-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.community-link {
  display: inline-block;
  margin-top: 15px;
  color: #f50057;
  font-weight: bold;
  text-decoration: none;
}

.community-link i {
  margin-left: 5px;
}

.community-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
  color: gray;
}

.community-stats span {
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
}

.community-stats i {
  margin-right: 5px;
}

/* Responsivo */
@media (max-width: 768px) {
  .community-container {
    flex-direction: column;
    align-items: center;
  }
}
