        :root {
          --primary: #d4af37;
          --primary-dark: #c19b2e;
          --bg-dark: #1a1a1a;
          --text-dark: #333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            margin: 0;
            overflow-x: hidden;
            padding: 0;
            
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        a:focus,
        button:focus,
        input:focus,
        textarea:focus {
        outline: 2px solid #d4af37;
        outline-offset: 2px;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background-color: #1a1a1a;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .logo img {
            max-height: 80px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: #fff;
            font-weight: 500;
            transition: color 0.3s, transform 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: #d4af37;
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #d4af37;
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
            margin-bottom: 2rem;
        }

        .carousel {
            height: 100%;
            position: relative;
        }

        .carousel-item {
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .carousel-item.active {
            opacity: 1;
        }

        .carousel-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 80%;
        }

        .carousel-caption h1 {
            font-size: clamp(1.8rem, 5vw, 4rem);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
            animation: fadeInDown 1s ease;
        }

        .carousel-caption p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section {
            padding: 5rem 10%;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1a1a1a;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: #d4af37;
            bottom: -10px;
            left: 25%;
        }

        .events-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .event-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .event-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .event-info {
            padding: 1.5rem;
        }

        .event-date {
            color: #d4af37;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .event-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .event-description {
            color: #666;
            margin-bottom: 1.5rem;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background: #d4af37;
            color: white;
            border-radius: 30px;
            font-weight: bold;
            transition: background 0.3s;
        }

        .btn:hover {
            background: #c19b2e;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        
        /* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-conteudo {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
}

.fechar {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

#legenda {
  text-align: center;
  color: #ccc;
  padding: 10px;
}

        .news-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .news-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .news-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .news-content {
            padding: 1.5rem;
        }

        .news-date {
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .news-title {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .news-excerpt {
            color: #666;
            margin-bottom: 1.5rem;
        }

        .video-container {
            margin-top: 3rem;
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
    
        /* Formulário Moderno */
        .modern-contact-form {
        max-width: 800px;
        margin: 0 auto;
        padding: 30px;
        border-radius: 15px;
        background: white;
        box-shadow: 0 5px 30px rgba(0,0,0,0.1);
        }

        .form-header {
        text-align: center;
        margin-bottom: 30px;
        }

        .form-header h3 {
        color: #333;
        font-size: 1.8rem;
        margin-bottom: 5px;
        }

        .form-header p {
        color: #666;
        }

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

        .form-group {
        position: relative;
        margin-bottom: 25px;
        }

        .form-group.full-width {
         grid-column: 1 / -1;
        }

        .form-group input, 
        .form-group textarea {
        width: 100%;
        padding: 15px 15px 15px 40px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
        transition: all 0.3s;
        }

        .form-group textarea {
        min-height: 150px;
        resize: vertical;
        padding-left: 15px;
        }

        .form-group label {
        position: absolute;
        left: 40px;
        top: 15px;
        color: #999;
        transition: all 0.3s;
        pointer-events: none;
        background: white;
        padding: 0 5px;
        }

       .form-group i {
       position: absolute;
       left: 15px;
       top: 15px;
       color: #666;
       }

       .form-group input:focus, 
       .form-group textarea:focus {
        border-color: #d4af37;
        outline: none;
        }

        .form-group input:focus + label,
        .form-group input:valid + label,
        .form-group textarea:focus + label,
        .form-group textarea:valid + label {
         top: -10px;
        left: 30px;
        font-size: 12px;
        color: #d4af37;
        }

        .modern-submit-btn {
        background: #d4af37;
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        }

        .modern-submit-btn:hover {
         background: #3a70c2;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(74, 137, 220, 0.4);
        }

       .form-footer {
       display: flex;
       flex-direction: column;
       align-items: center;
       gap: 15px;
       }

       .form-disclaimer {
        font-size: 12px;
        color: #999;
         display: flex;
        align-items: center;
        gap: 5px;
        }

        footer {
            background: #1a1a1a;
            color: white;
            padding: 3rem 10%;
            text-align: center;
        }
         .footer-modern {
  background-color: #111;
  color: #eee;
  padding: 3rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.footer-logo-area h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
}

.footer-logo-area p {
  margin: 0;
  font-size: 0.95rem;
  color: #aaa;
}

.footer-contact a.modern-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25d366;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-contact span {
  font-size: 0.75rem;
  display: block;
}

.footer-social .social-links a {
  color: #fff;
  margin-right: 0.8rem;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-social .social-links a:hover {
  color: #f39c12;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #aaa;
}
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #d4af37;
        }

        .footer-column p, .footer-column a {
            margin-bottom: 1rem;
            display: block;
        }

        .footer-column a:hover {
            color: #d4af37;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: #d4af37;
        }

        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                padding: 1rem;
            }

            .nav-links {
                margin-top: 1rem;
            }

            .nav-links li {
                margin: 0 0.5rem;
            }

            .carousel-caption h1 {
                font-size: 2.5rem;
            }

            .carousel-caption p {
                font-size: 1.2rem;
            }

            .section {
                padding: 3rem 5%;
            }

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

        @media (max-width: 480px) {
            .nav-links {
                flex-direction: column;
                align-items: center;
            }

            .nav-links li {
                margin: 0.5rem 0;
            }

            .carousel-caption h1 {
                font-size: 2rem;
            }

            .carousel-caption p {
                font-size: 1rem;
            }
        }
        
        .menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        z-index: 1100;
        }

        .menu-toggle .bar {
        height: 3px;
        width: 25px;
        background-color: #fff;
        margin: 4px 0;
        transition: 0.3s;
        }

        @media (max-width: 768px) {
        .navbar {
          flex-wrap: wrap;
        }

        .menu-toggle {
          display: flex;
        }

        .nav-links {
          width: 100%;
          flex-direction: column;
          background-color: #1a1a1a;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease-in-out;
        }

        .nav-links.open {
          max-height: 300px;
        }

        .nav-links li {
          margin: 1rem 0;
          text-align: center;
          }
        }
        /* Modal de imagem */
        .image-modal {
           display: none; 
           position: fixed; 
           z-index: 2000; 
           padding-top: 60px; 
           left: 0;
           top: 0;
           width: 100%;
           height: 100%;
           overflow: auto;
           background-color: rgba(0,0,0,0.9);
        }

        .image-modal .modal-content {
            margin: auto;
            display: block;
            max-width: 80%;
            max-height: 80%;
            animation: zoomIn 0.6s;
        }

        .image-modal .close-modal {
            position: absolute;
            top: 30px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }

        @keyframes zoomIn {
        from {transform: scale(0.7);}
        to {transform: scale(1);}
        }
        .video-highlight {
        text-align: center;
        padding: 60px 20px;
        background: #f5f5f5;
        }

        .video-wrapper {
        max-width: 800px;
        margin: 0 auto;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-radius: 16px;
        overflow: hidden;
        background: #000;
        }

        .video-wrapper video {
        width: 100%;
        height: auto;
        display: block;
        border: none;
        }

        .video-caption {
        font-size: 1rem;
        color: #555;
        padding: 15px 10px;
        background: #fff;
        }

        #depoimentos {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

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

.titulo-depoimentos {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: #333;
}

.depoimentos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card-depoimento {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(100% - 40px);  /* mobile padrão */
    max-width: 100%;
    padding: 24px;
    text-align: left;
    transition: transform 0.3s ease;
    line-height: 1.6;
    min-height: 320px;
}

.card-depoimento:hover {
    transform: translateY(-5px);
}

.card-depoimento img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #ccc;
}

.card-depoimento .conteudo h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #222;
}

.card-depoimento .subtitulo {
    font-size: 0.95rem;
    color: #444;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 15px;
    display: block;
}
.card-depoimento .mensagem {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
}

/* Tablet: 2 por linha */
@media (min-width: 768px) {
    .card-depoimento {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

/* Desktop: 3 por linha */
@media (min-width: 1024px) {
    .card-depoimento {
        flex: 1 1 calc(33.33% - 30px);
        max-width: calc(33.33% - 30px);
    }
}

        input, textarea, button {
        width: 100%;
        padding: 10px;
        margin-top: 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
        }
        button {
        background: #4CAF50;
        color: white;
        border: none;
        cursor: pointer;
        }
        button:hover {
        background: #45a049;
        }
        /* Botão WhatsApp Moderno */
        .modern-whatsapp-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #25D366;
        color: white;
        padding: 15px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s;
        margin: 10px 0;
       text-align: center;
       box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
       }

       .modern-whatsapp-btn:hover {
       background: #128C7E;
       transform: translateY(-2px);
       box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
       }

       .modern-whatsapp-btn i {
       font-size: 24px;
       margin-bottom: 5px;
       }

       .modern-whatsapp-btn span {
       font-size: 12px;
       font-weight: normal;
       opacity: 0.9;
       }

       .whatsapp-info {
       font-size: 12px;
       color: #aaa;
       margin-top: 5px;
       }
        .cartaz {
        margin-top: 30px;
        text-align: center;
        }
        .cartaz img {
        max-width: 100%;
        border-radius: 80px;
        }
        .produtos {
        padding: 60px 20px;
        background-color: #fdfdfd;
        text-align: center;
        }

        .produtos h2 {
        font-size: 2rem;
        margin-bottom: 80px;
        color: #333;
        font-weight: bold;
        }

        .produto-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 800px;
        margin: 0 auto;
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 0 15px rgba(0,0,0,0.1);
        padding: 20px;
        }

        .produto-item img {
        width: 100%;
        max-width: 500px;
        border-radius: 8px;
        margin-bottom: 15px;
        }

        .produto-info h3 {
        font-size: 1.3rem;
        color: #444;
        margin-bottom: 8px;
        }

        .produto-info .breve {
        font-size: 1rem;
        color: #a00;
        font-weight: bold;
        background-color: #ffe6e6;
        padding: 6px 12px;
        border-radius: 6px;
        }
        #popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        }

        #popup-content {
        position: relative;
        background: #fff;
        padding: 0;
        border-radius: 10px;
        max-width: 90%;
        max-height: 90%;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        }

        #popup-content img {
        display: block;
        width: 100%;
        height: auto;
        height: auto;
        }

        #popup-close {
        position: absolute;
        top: 20px;
        right: 10px;
        background: red;
        color: white;
        border: none;
        font-size: 20px;
        font-weight: bold;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        cursor: pointer;
        z-index: 10000;
        transition: color 0.3s ease;
        text-shadow: 0 0 4px black;
        }

        #popup-close:hover {
        background: darkred;
        color: #ff4444;
        }
        #popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.6);
        z-index: 9999;
        display: none;
        }

        #popup-comercial {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 350px;
        background-color: white;
        border: 2px solid #444;
        border-radius: 10px;
        padding: 20px;
        z-index: 10000;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
       text-align: center;
       }

       #popup-close {
       position: absolute;
       top: -15px;
       right: -15px;
       background: red;
       color: white;
       border: none;
       font-size: 20px;
       width: 35px;
       height: 35px;
       border-radius: 50%;
       cursor: pointer;
       font-weight: bold;
       }

       #popup-close:hover {
       background: darkred;
       }
       .canal-confiart {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(10, 10, 10, 0.9)),
              url('../images/imagen2.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 3rem 0;
  position: relative;
}

       .canal-container {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.canal-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.canal-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #800080;
}

.canal-info h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.canal-info p {
  color: #555;
  margin-bottom: 1rem;
}

.btn-inscreva {
  display: inline-block;
  background: #ff0000;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-inscreva:hover {
  background: #cc0000;
}

.video-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.video-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  padding-bottom: 1rem;
}

.video-card iframe {
  width: 100%;
  height: 180px;
  border: none;
}

.video-card h3 {
  padding: 0.8rem 1rem 0 1rem;
  font-size: 1rem;
  color: #333;
}
/* Container padrão */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Seção canal */
.canal-confiart {
  background: linear-gradient(to right, #2c2c2c, #1a1a1a);
  color: #fff;
  padding: 3rem 0;
}

/* Header do canal */
.canal-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.canal-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.canal-info h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.canal-info p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.btn-inscreva {
  display: inline-block;
  background-color: #cc0000;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-inscreva:hover {
  background-color: #e60000;
}

/* Título da seção */
.section-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

    .canal-confiart {
  background: #f7f7f7;
  padding: 40px 20px;
}

.youtube-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.canal-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.canal-logo {
  width: 120px;
  border-radius: 12px;
}

.canal-info h1 {
  font-size: 26px;
  margin-bottom: 8px;
}

.btn-inscreva {
  display: inline-block;
  background-color: #ff0000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-inscreva:hover {
  background-color: #cc0000;
}

.section-title {
  font-size: 24px;
  margin-bottom: 15px;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.video-card {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: scale(1.02);
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

.video-card h3 {
  font-size: 16px;
  margin-top: 10px;
}


/* Animação de entrada */
.fade-in {
  animation: fadeIn 0.7s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo para celular */
@media (max-width: 600px) {
  .canal-header {
    flex-direction: column;
    text-align: center;
  }

  .canal-logo {
    width: 100px;
    height: 100px;
  }

  .canal-info h1 {
    font-size: 1.5rem;
  }

  .btn-inscreva {
    padding: 0.5rem 1rem;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.modal-content {
  background: white;
  max-width: 700px;
  width: 90%;
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  text-align: center;
}

.modal-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.modal-content iframe {
  width: 100%;
  height: 360px;
  border: none;
  margin-bottom: 1rem;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

.video-wrapper iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}
.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.galeria img {
  width: 180px;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content-galeria {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

#captionGaleria {
  text-align: center;
  color: #fff;
  padding: 10px;
  font-size: 18px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover {
  color: #f1f1f1;
}


