/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Barlow Semi Condensed', sans-serif;
    overflow-x: hidden;
    background-color: black;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Vídeo de fundo */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}

/* Imagem de fallback */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg-hitz-2000.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Overlay de dots com 80% de visibilidade */
.overlay-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgb(0 0 0 / 60%) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.5;
    z-index: 1;
}

/* Conteúdo do hero */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
}

/* Navegação principal */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-left,
.nav-right {
    flex: 1;
}

.nav-left {
    display: flex;
    justify-content: flex-end;
    padding-right: 60px;
}

.nav-right {
    display: flex;
    justify-content: flex-start;
    padding-left: 60px;
}

.nav-left ul,
.nav-right ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-left li,
.nav-right li {
    position: relative;
}

.nav-left a,
.nav-right a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-left a:hover,
.nav-right a:hover {
    color: #00caec;
    transform: translateY(-2px);
}

/* Efeito underline no hover */
.nav-left a::after,
.nav-right a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00caec;
    transition: width 0.3s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 100%;
}

/* Logo central */
.logo-container {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.main-logo {
    max-height: 75px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Botão Menu Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    border-color: #00caec;
    color: #00caec;
}

/* Menu Mobile */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 9998;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 40px 20px;
    gap: 30px;
}

.mobile-menu-item {
    color: white;
    text-decoration: none;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 15px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-item:hover {
    color: #00caec;
    transform: translateY(-2px);
}

/* Botão fechar menu mobile */
.close-mobile-menu {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-mobile-menu:hover {
    color: #00caec;
    transform: rotate(90deg);
}

/* Ícones Sociais Flutuantes */
.floating-social {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.spotify:hover {
    background: #1db954;
}

.social-icon.youtube:hover {
    background: #ff0000;
}

.social-icon.whatsapp:hover {
    background: #25d366;
}

.social-icon:hover svg {
    color: white;
}

/* Responsividade */
@media (max-width: 1200px) {
    .nav-left,
    .nav-right {
        padding: 0 30px;
    }
    
    .nav-left ul,
    .nav-right ul {
        gap: 25px;
    }
    
    .nav-left a,
    .nav-right a {
        font-size: 16px;
    }
    
    .main-logo {
        max-height: 65px;
    }
}

@media (max-width: 900px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
        position: relative;
    }
    
    .nav-left,
    .nav-right {
        display: none;
    }
    
    .logo-container {
        order: 1;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Ícones sociais no bottom para mobile */
    .floating-social {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 20px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 20px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 0 20px;
    }
    
    .main-logo {
        max-height: 70px;
    }
    
    .mobile-menu-btn {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .mobile-menu-item {
        font-size: 20px;
        letter-spacing: 1px;
        padding: 12px 15px;
    }
    
    .mobile-menu-content {
        padding: 40px 15px;
        gap: 25px;
    }
    
    .close-mobile-menu {
        top: 20px;
        right: 20px;
        font-size: 30px;
        width: 30px;
        height: 30px;
    }
    
    /* Ícones sociais menores em telas pequenas */
    .floating-social {
        bottom: 15px;
        gap: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.nav-left li,
.nav-right li {
    animation: fadeInUp 1s ease-out;
}

.nav-left li:nth-child(1) { animation-delay: 0.1s; }
.nav-left li:nth-child(2) { animation-delay: 0.2s; }
.nav-left li:nth-child(3) { animation-delay: 0.3s; }

.logo-container {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.nav-right li:nth-child(1) { animation-delay: 0.5s; }
.nav-right li:nth-child(2) { animation-delay: 0.6s; }
.nav-right li:nth-child(3) { animation-delay: 0.7s; }

/* Painel Lateral Fullscreen */
.side-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.side-panel.active {
    right: 0;
}

/* Botão de Fechar - X grande no canto superior esquerdo */
.close-btn {
    position: absolute;
    top: 40px;
    left: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 60px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    line-height: 1;
    padding: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #00caec;
    transform: rotate(90deg);
}

/* Conteúdo do Painel */
.panel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 40px 40px;
    overflow-y: auto;
}

/* Título da Página */
.panel-title {
    color: white;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin: 0 0 40px 0;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Área de Conteúdo */
.panel-body {
    width: 100%;
    max-width: 800px;
    color: white;
    font-family: 'Barlow Semi Condensed', sans-serif;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Seções de Conteúdo */
.content-section {
    text-align: left;
}

.content-section p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #00caec;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content-section li {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #e0e0e0;
}

.content-section li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #00caec;
    font-size: 12px;
}

/* Grid de Fotos */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.photo-placeholder {
    background: #333;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #999;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.photo-placeholder:hover {
    background: #444;
}

/* Carrossel de Agenda */
.agenda-carousel {
    margin-top: 30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.agenda-container {
    flex: 1;
    overflow: hidden;
}

.agenda-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 20px;
}

/* Cards de Agenda */
.agenda-card {
    flex: 0 0 calc(33.333% - 14px);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 0;
}

.agenda-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

/* Número da Data - Destaque */
.date-number {
    font-size: 48px;
    font-weight: 700;
    color: #00caec;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 202, 236, 0.5);
}

/* Mês */
.date-month {
    font-size: 18px;
    font-weight: 500;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Cidade - Destaque */
.event-city {
    font-size: 20px;
    font-weight: 600;
    color: #00caec;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nome do Evento */
.event-name {
    font-size: 14px;
    font-weight: 300;
    color: #b0b0b0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Botões do Carrossel */
.carousel-btn {
    background: none;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-btn:hover {
    color: #00caec;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Informações de Contrato */
.contract-info {
    margin-top: 30px;
}

/* Informações de Contato */
.contact-info {
    margin-top: 30px;
    margin-bottom: 40px;
}

.contact-group {
    margin-bottom: 30px;
}

.contact-group h3 {
    color: #00caec;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item {
    padding: 8px 0;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 300;
    color: #e0e0e0;
}

/* Formulário de Contato */
.contact-form-container {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.contact-form-container h3 {
    color: #00caec;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 12px 15px;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00caec;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(0, 202, 236, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00caec;
    color: #00caec;
    transform: translateY(-2px);
}

/* Responsividade do Painel */
@media (max-width: 900px) {
    .close-btn {
        top: 30px;
        left: 30px;
        font-size: 50px;
        width: 50px;
        height: 50px;
    }
    
    .panel-title {
        font-size: 45px;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }
    
    .panel-content {
        padding: 70px 30px 30px;
    }
    
    .content-section p {
        font-size: 16px;
    }
    
    .content-section h3 {
        font-size: 20px;
    }
    
    /* Formulário Mobile */
    .contact-form-container h3,
    .contact-group h3 {
        font-size: 18px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    /* Carrossel Mobile - 3 cards */
    .agenda-carousel {
        gap: 15px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .agenda-card {
        padding: 20px 15px;
    }
    
    .date-number {
        font-size: 40px;
    }
    
    .date-month {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .event-city {
        font-size: 18px;
    }
    
    .event-name {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .close-btn {
        top: 20px;
        left: 20px;
        font-size: 40px;
        width: 40px;
        height: 40px;
    }
    
    .panel-title {
        font-size: 32px;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }
    
    .panel-content {
        padding: 60px 20px 20px;
    }
    
    .content-section p {
        font-size: 14px;
    }
    
    .content-section h3 {
        font-size: 18px;
    }
    
    .content-section li {
        font-size: 14px;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-item {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    /* Formulário Mobile Pequeno */
    .contact-form-container {
        padding-top: 30px;
        margin-top: 30px;
    }
    
    .contact-form-container h3,
    .contact-group h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .submit-btn {
        font-size: 12px;
        padding: 12px 25px;
    }
    
    /* Carrossel Mobile - 1 card */
    .agenda-card {
        flex: 0 0 calc(100% - 20px);
        padding: 20px 15px;
        min-width: 0;
    }
    
    .agenda-carousel {
        gap: 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .date-number {
        font-size: 36px;
    }
    
    .date-month {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .event-city {
        font-size: 16px;
    }
    
    .event-name {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .panel-title {
        font-size: 32px;
        letter-spacing: 1px;
    }
}