* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Navegação */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid #c41e3a;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #c41e3a;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c41e3a;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(196, 30, 58, 0.2));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 20px 50px;
}

.hero-video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    z-index: 10;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border: 3px solid #c41e3a;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.6);
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 80px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #c41e3a;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: #c41e3a;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #c41e3a;
    transition: all 0.3s;
    font-size: 16px;
    font-weight: bold;
}

.btn:hover {
    background: transparent;
    color: #c41e3a;
    transform: scale(1.05);
}

/* Redes Sociais */
.social-media {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}

.social-media a {
    color: #fff;
    font-size: 24px;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 50%;
}

.social-media a:hover {
    color: #c41e3a;
    border-color: #c41e3a;
    transform: scale(1.1);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 30px;
    text-align: center;
    border-top: 2px solid #c41e3a;
    width: 100%;
    position: relative;
    margin-top: 50px;
}

footer p {
    margin: 5px 0;
    color: #fff;
}

footer a {
    color: #c41e3a;
    text-decoration: none;
}

/* Menu Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* Página de Vídeos */
.page-header {
    margin-top: 80px;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(196, 30, 58, 0.3));
    border-bottom: 3px solid #c41e3a;
}

.page-header h1 {
    font-size: 60px;
    color: #c41e3a;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    letter-spacing: 3px;
    color: #ccc;
}

.videos-section {
    padding: 60px 20px;
    background: #0a0a0a;
    margin-bottom: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Vídeo em Destaque */
.featured-video {
    margin-bottom: 60px;
}

.featured-video h2 {
    font-size: 32px;
    color: #c41e3a;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.featured-video h2 i {
    margin-right: 10px;
    color: #ffd700;
}

.video-info {
    text-align: center;
    padding: 25px;
    background: #111;
    border: 2px solid #c41e3a;
    border-radius: 5px;
    margin-top: 20px;
}

.video-info h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
}

.video-info p {
    color: #c41e3a;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Grid de Vídeos */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.video-card {
    background: #111;
    border: 2px solid #333;
    transition: all 0.3s ease;
    overflow: hidden;
}

.video-card:hover {
    border-color: #c41e3a;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
}

.video-card-info {
    padding: 20px;
    text-align: center;
}

.video-card-info h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-card-info p {
    color: #888;
    margin-bottom: 15px;
    font-size: 14px;
}

.watch-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.watch-btn:hover {
    background: #cc0000;
    transform: scale(1.05);
}

.watch-btn i {
    margin-right: 8px;
}

/* Botão Ver Mais */
.load-more {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #c41e3a;
    color: #c41e3a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline:hover {
    background: #c41e3a;
    color: #fff;
    transform: scale(1.05);
}

.btn-outline i {
    margin-right: 10px;
    font-size: 18px;
}

/* Biografia */
.bio-content {
    padding: 60px 20px;
    background: #0a0a0a;
    margin-bottom: 100px;
}

.bio-content .container {
    max-width: 1000px;
    margin: 0 auto;
}

.bio-image {
    text-align: center;
    margin-bottom: 40px;
}

.bio-image img {
    max-width: 400px;
    border-radius: 10px;
    border: 3px solid #c41e3a;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.bio-text h2 {
    color: #c41e3a;
    font-size: 28px;
    margin: 30px 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #c41e3a;
    padding-bottom: 10px;
}

.bio-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: #ddd;
}

.bio-text strong {
    color: #c41e3a;
}

/* Discografia */
.discography-section {
    padding: 60px 20px;
    background: #0a0a0a;
    margin-bottom: 100px;
}

.album-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    background: #111;
    padding: 40px;
    border: 2px solid #c41e3a;
    border-radius: 10px;
    margin-bottom: 40px;
}

.album-cover {
    position: relative;
}

.album-cover img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(196, 30, 58, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 5px;
}

.album-cover:hover .album-overlay {
    opacity: 1;
}

.btn-listen {
    padding: 15px 30px;
    background: #fff;
    color: #c41e3a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-listen i {
    margin-right: 10px;
}

.album-info h2 {
    color: #c41e3a;
    font-size: 36px;
    margin-bottom: 10px;
}

.album-year, .album-genre {
    color: #888;
    margin-bottom: 30px;
}

.album-info h3 {
    color: #fff;
    margin: 25px 0 15px;
    font-size: 20px;
}

.tracklist {
    list-style: none;
    padding: 0;
}

.tracklist li {
    padding: 10px;
    border-bottom: 1px solid #333;
    color: #ddd;
}

.tracklist li:hover {
    background: #1a1a1a;
    color: #c41e3a;
}

.duration {
    float: right;
    color: #888;
}

.credits {
    list-style: none;
    padding: 0;
}

.credits li {
    padding: 8px 0;
    color: #aaa;
    border-bottom: 1px solid #222;
}

.credits strong {
    color: #c41e3a;
}

/* iTunes */
.itunes-section {
    padding: 60px 20px;
    background: #0a0a0a;
    margin-bottom: 100px;
}

.itunes-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.album-showcase img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(196, 30, 58, 0.4);
}

.itunes-info h2 {
    font-size: 48px;
    color: #c41e3a;
    margin-bottom: 10px;
}

.artist-name {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.album-details {
    color: #888;
    margin-bottom: 30px;
}

.itunes-buttons {
    margin-bottom: 40px;
}

.btn-apple {
    display: inline-block;
    padding: 15px 40px;
    background: #fa243c;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-right: 15px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.btn-apple:hover {
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #c41e3a;
    color: #c41e3a;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #c41e3a;
    color: #fff;
}

.streaming-info h3 {
    color: #fff;
    margin-bottom: 15px;
}

.streaming-platforms {
    display: flex;
    gap: 15px;
}

.platform {
    padding: 10px 20px;
    background: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.platform:hover {
    background: #c41e3a;
    transform: translateY(-3px);
}

.itunes-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.feature {
    text-align: center;
    padding: 30px;
    background: #111;
    border-radius: 10px;
    border: 1px solid #333;
}

.feature i {
    font-size: 48px;
    color: #c41e3a;
    margin-bottom: 20px;
}

.feature h3 {
    color: #fff;
    margin-bottom: 10px;
}

.feature p {
    color: #888;
}

/* Contactos */
.contact-section {
    padding: 60px 20px;
    background: #0a0a0a;
    margin-bottom: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    color: #c41e3a;
    margin-bottom: 30px;
    font-size: 28px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c41e3a;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 13px;
    color: #aaa;
}

.form-note {
    font-size: 12px;
    color: #888;
    margin-bottom: 20px;
}

.form-note a {
    color: #c41e3a;
}

.recaptcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    width: fit-content;
    margin-bottom: 20px;
}

.recaptcha-box input {
    width: 24px;
    height: 24px;
}

.recaptcha-logo {
    margin-left: 20px;
    color: #555;
    font-size: 12px;
}

.btn-submit {
    padding: 15px 40px;
    background: #c41e3a;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: #a01830;
    transform: translateY(-2px);
}

.btn-submit i {
    margin-right: 10px;
}

.album-promo {
    text-align: center;
    margin-bottom: 40px;
}

.promo-text {
    color: #c41e3a;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
}

.album-promo img {
    max-width: 300px;
    border-radius: 5px;
    border: 2px solid #c41e3a;
    transition: transform 0.3s;
}

.album-promo img:hover {
    transform: scale(1.05);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #111;
    border-radius: 5px;
    border-left: 3px solid #c41e3a;
}

.contact-item i {
    font-size: 24px;
    color: #c41e3a;
    margin-top: 5px;
}

.contact-item h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-item p {
    color: #aaa;
    margin: 0;
}

.contact-item small {
    color: #666;
    font-size: 11px;
}

.social-links {
    margin-top: 30px;
}

.social-links h3 {
    color: #fff;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s;
}

.social-icon.facebook { background: #3b5998; }
.social-icon.instagram { background: #e4405f; }
.social-icon.youtube { background: #ff0000; }
.social-icon.linkedin { background: #0077b5; }
.social-icon.apple { background: #000; border: 2px solid #c41e3a; }

.social-icon:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Privacy */
.privacy-section {
    padding: 60px 20px;
    background: #0a0a0a;
    margin-bottom: 100px;
}

.privacy-intro {
    background: #111;
    padding: 30px;
    border-left: 4px solid #c41e3a;
    margin-bottom: 40px;
    border-radius: 5px;
}

.privacy-intro p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-item {
    background: #111;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    border: 1px solid #333;
}

.privacy-item h2 {
    color: #c41e3a;
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 2px solid #c41e3a;
    padding-bottom: 10px;
}

.privacy-item p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-item a {
    color: #c41e3a;
}

/* Responsivo */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0,0,0,0.95);
        width: 100%;
        padding: 30px;
        transition: 0.3s;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .social-media {
        bottom: 80px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
    }

    .page-header h1 {
        font-size: 40px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .featured-video h2 {
        font-size: 24px;
    }

    .video-info h3 {
        font-size: 22px;
    }

    .album-card,
    .itunes-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .itunes-features {
        grid-template-columns: 1fr;
    }

    .bio-image img {
        max-width: 100%;
    }
}