/* Basic Reset & Body Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; /* Better sans-serif stack */
    background-color: #111; /* Darker background to match image */
    color: #f0f0f0; /* Light text */
    line-height: 1.6;
    /* Background properties removed for video background */
}

/* General Styles */

.blurred-box {
    background-color: rgba(255, 255, 255, 0.1); /* Fundo branco semitransparente */
    backdrop-filter: blur(10px); /* Efeito de desfoque */
    -webkit-backdrop-filter: blur(10px); /* Suporte para Safari */
    border-radius: 15px; /* Bordas arredondadas */
    padding: 40px;
    margin-top: 40px; /* Espaçamento superior */
    margin-bottom: 40px; /* Espaçamento entre as seções */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borda sutil */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Sombra suave */
}



/* Video Background */
#background-video {
    position: fixed;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Precise centering */
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    z-index: -100;
    object-fit: cover; /* Mantém proporção e cobre toda a área */
    background-size: cover;
    /* Optional: Add a dark overlay */
    /* filter: brightness(0.5); */
}

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

/* Buttons */
.cta-button {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pink-button {
    background-color: #e83e8c; /* Pink color */
    color: #fff;
}

.pink-button:hover {
    background-color: #d1367d;
}

.dark-button {
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
}

.dark-button:hover {
    background-color: #444;
}

/* Remove underline from hero buttons */
.hero a.cta-button,
.hero a.dark-button {
    text-decoration: none;
}

/* Header */
header {
    background-color: #222;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

.logo span {
    color: #e83e8c; /* Pink */
    font-size: 0.8em;
    vertical-align: super;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
}

nav ul li a:hover {
    color: #e83e8c;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    /* background-color: #111; /* Removed to show video background */
    /* Add background image/pattern if desired */
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.event-location {
    color: #aaa;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
}

.hero-buttons .cta-button {
    margin-right: 15px;
}

.hero-media {
    flex: 1;
    position: relative;
    background-color: rgba(34, 34, 34, 0.7); /* Darker background with transparency */
    backdrop-filter: blur(5px); /* Apply blur effect */
    -webkit-backdrop-filter: blur(5px); /* For Safari */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-media img {
    display: block;
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.event-details p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #f0f0f0;
}

.event-details h3 {
    color: #e83e8c; /* Pink color for the date */
}

.event-details .icon {
    margin-right: 8px;
    color: #e83e8c; /* Pink icon */
}
.event-details p:first-child { /* Assuming the date is the first paragraph */
    font-size: 1.1rem; /* Increased font size */
    font-weight: bold; /* Make it bold */
    /* Color removed, will be applied to h3 */
}

.event-details p:last-child .icon {
     color: #007bff; /* Blue icon */
}


.vacancies-info {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #17a2b8; /* Cyan/Greenish tag like image */
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Features Section */
.features .container > div:first-child { /* Target the inner div holding the content */
    /* Apply blurred-box styles here if needed, or add the class in HTML */
}
.experiment, .target-audience, .testimonials, .register, .faq {
    padding: 60px 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px; /* Increased margin for better separation */
    color: #fff;
}

/* Specific style for Register section H2 */
.register > .container > h2 {
    width: 100%; /* Ensure it spans the container width */
    margin-bottom: 40px; /* Consistent margin */
    text-align: center;
}

.experiment > .container > p,
.target-audience > .container .audience-content > p,
.testimonials > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #bbb;
}

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

.feature-item {
    /* background-color: #2a2a2a; */ /* Replaced by blurred-box style */
    padding: 30px; /* Kept original padding */
    /* border-radius: 8px; */ /* Replaced by blurred-box style */
    text-align: center;
    /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2); */ /* Replaced by blurred-box style */

    /* Added blurred-box styles (adjusted padding) */
    background-color: rgba(255, 255, 255, 0.1); /* Fundo branco semitransparente */
    backdrop-filter: blur(10px); /* Efeito de desfoque */
    -webkit-backdrop-filter: blur(10px); /* Suporte para Safari */
    border-radius: 15px; /* Bordas arredondadas */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borda sutil */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

.feature-item .icon {
    font-size: 2.5rem; /* Adjust as needed */
    margin-bottom: 15px;
    display: block;
}
/* Assign specific colors to icons if needed */
.features-grid .feature-item:nth-child(1) .icon { color: #e83e8c; } /* Pink */
.features-grid .feature-item:nth-child(2) .icon { color: #e83e8c; } /* Pink */
.features-grid .feature-item:nth-child(3) .icon { color: #17a2b8; } /* Cyan */
.features-grid .feature-item:nth-child(4) .icon { color: #17a2b8; } /* Cyan */


.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-item p {
    color: #bbb;
    font-size: 0.95rem;
}

/* Target Audience Section */
.target-audience .container.blurred-box {
    padding-top: 60px; /* Increased top padding */
}
.target-audience .container > div:first-child { /* Target the inner div holding the content */
    /* Apply blurred-box styles here if needed, or add the class in HTML */
}
.target-audience .container {
    display: flex;
    gap: 40px;
    align-items: flex-start; /* Align items to the top */
}

.audience-content {
    flex-basis: 40%; /* Adjust basis as needed */
    text-align: left; /* Alinha o texto à esquerda */
}
.audience-content h2, .audience-content p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}


.audience-list {
    flex-basis: 60%; /* Adjust basis */
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px;
    /* background-color, padding, border-radius removed */
}

.audience-item {
    display: flex;
    align-items: flex-start; /* Align icon and text */
    gap: 15px;
}

.audience-item .icon {
    font-size: 1.5rem; /* Adjust icon size */
    margin-top: 3px; /* Align icon nicely */
}
.pink-icon { color: #e83e8c; }
.blue-icon { color: #17a2b8; } /* Cyan */


.audience-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.audience-item p {
    color: #bbb;
    font-size: 0.9rem;
}


/* Testimonials Section */
.testimonials .container > div:first-child { /* Target the inner div holding the content */
    /* Apply blurred-box styles here if needed, or add the class in HTML */
}

/* Video Testimonials Grid */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 30px;
    margin-top: 30px;
}

.video-testimonial-item {
    background-color: #2c2c2c; /* Darker card background */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.video-testimonial-item img {
    display: block; /* Ensure block behavior for centering */
    margin-left: auto; /* Center the image */
    margin-right: auto; /* Center the image */
    width: 100%;
    max-width: 200px; /* Control image size */
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 3px solid #e83e8c; /* Pink border for thumbnail */
}

.video-testimonial-item p {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Video Modal Styles */
#videoModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.9);
}

#videoModal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background-color: #1e1e1e;
    width: 40%;
    height: 90vh;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-button {
    color: #fff;
    position: absolute;
    right: 10px;
    top: 0px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    transform: scale(1.1);
}

.close-button img {
    width: 32px;
    height: 32px;
}

#modalVideo {
    width: 100%;
    height: 100%;
    max-height: calc(90vh - 40px);
    border-radius: 5px;
    display: block;
    object-fit: contain;
    margin: auto;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95vw;
        height: 80vh;
        max-width: 95vw;
        max-height: 90vh;
        aspect-ratio: 9/16;
        margin: 0;
        padding: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        box-sizing: border-box;
    }

    .close-button {
        right: 8px;
        top: 8px;
        width: 36px;
        height: 36px;
        background: rgba(30,30,30,0.7);
        border-radius: 50%;
        padding: 4px;
    }

    .close-button img {
        width: 28px;
        height: 28px;
    }

    #modalVideo {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 70vh;
        border-radius: 8px;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    display: flex; /* Enables flexbox layout */
    align-items: center; /* Aligns items vertically in the center */
    gap: 20px; /* Adds space between image and text */
    padding: 20px; /* Adjusted padding */
    /* blurred-box class will handle background, blur, border-radius, border, box-shadow */
}

.testimonial-card img {
    width: 100px; /* Adjust image width as needed */
    height: 100px; /* Adjust image height as needed */
    border-radius: 10px; /* Optional: rounded corners for the image */
    object-fit: cover;
}

.testimonial-info {
    flex-grow: 1; /* Allows the text container to take remaining space */
}

.testimonial-info h4 {
    color: #fff;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: #ddd;
    font-size: 0.9rem;
}

/* Garante que os cards de depoimento dentro da grade não tenham margens excessivas vindas da classe genérica .blurred-box */
.testimonial-card.blurred-box {
    margin-top: 0;
    margin-bottom: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.testimonial-card.blurred-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-card .rating {
    color: #ffc107; /* Yellow for stars */
    font-size: 1.2rem;
    margin-bottom: 15px;
}



/* CTA Section */
.cta-section .container { /* Target the container directly */
    /* Apply blurred-box styles here if needed, or add the class in HTML */
}

/* Styles for the main container of the register section */
.register .container {
    /* Removed flex properties, keep background/padding/radius */
    background-color: rgba(255, 255, 255, 0.1); /* Keep blurred-box style */
    padding: 40px;
    border-radius: 10px;
    /* Ensure h2 and p inside are centered */
}
.register .container > h2 {
    text-align: center; /* Already default h2 style */
    margin-bottom: 20px; /* Already default h2 style */
}
.register .container > p {
    text-align: center;
    max-width: 700px; /* Consistent with other sections */
    margin: 0 auto 40px auto; /* Center and add bottom margin */
    color: #bbb; /* Consistent with other sections */
}

/* Wrapper for the two columns: summary and form */
.register-content-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.event-summary {
    background-color: #18181b;
    color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.event-summary h3,
.event-summary h4,
.event-summary p,
.event-summary span,
.event-summary div {
    color: #fff !important;
}

.event-summary .summary-separator {
    border: none;
    height: 1px;
    background: #444;
    margin: 24px 0;
}

.event-summary .summary-buy-button {
    background: #e83e8c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    width: 100%;
    padding: 18px 0;
    margin-top: 30px;
    box-shadow: 0 0 20px #e83e8c55;
    transition: background 0.2s, box-shadow 0.2s;
}
.event-summary .summary-buy-button:hover {
    background: #d1367d;
    box-shadow: 0 0 30px #e83e8c99;
}

.event-summary h3 {
    text-align: left;
    width: 100%;
    margin-left: 0;
}

.lotes-info {
    text-align: left;
    padding-left: 10px;
}

.lotes-info p {
    color: #fff !important;
    margin: 8px 0;
}

/* FAQ Section */
.faq .container > div:first-child { /* Target the inner div holding the content */
    /* Apply blurred-box styles here if needed, or add the class in HTML */
}
.faq .container {
    max-width: 800px; /* Narrower container for FAQ */
}

.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
}

.faq-question {
    background: none;
    border: none;
    color: #f0f0f0;
    font-size: 1.2rem;
    padding: 15px 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.faq-question::after {
    content: '+'; /* Use an icon font or SVG for better icons */
    font-size: 1.5rem;
    color: #e83e8c;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
     transform: rotate(45deg);
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #2a2a2a; /* Background for open answer */
    padding: 0 20px;
    border-radius: 0 0 5px 5px;
}
.faq-answer p {
    padding: 20px 0;
    color: #ccc;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust as needed */
    padding: 0 20px;
}


/* Footer */
footer {
    background-color: #111;
    padding-top: 40px;
    margin-top: 60px;
    border-top: 1px solid #333;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 30px;
    gap: 30px;
}

.footer-about {
    flex-basis: 50%;
}

.footer-about .logo {
    margin-bottom: 15px;
}

.footer-about p {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin-left: 15px;
    font-size: 1.5rem; /* Adjust icon size */
}
.footer-links a:hover {
    color: #e83e8c;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
    margin-left: 15px;
}
.footer-bottom a:hover {
    color: #e83e8c; /* Pink */
}

/* Estilo para a data do evento */
.summary-details h3:first-of-type {
    color: #e83e8c; /* Cor solicitada para a data */
}

/* Animação Neon Pulsante */
@keyframes neon-pulse {
    0%, 100% {
        box-shadow: 0 0 5px #e83e8c, 0 0 10px #e83e8c, 0 0 15px #e83e8c;
    }
    50% {
        box-shadow: 0 0 10px #e83e8c, 0 0 20px #e83e8c, 0 0 30px #e83e8c;
    }
}

/* Aplicar animação aos botões rosa e de resumo quando não hover */
.hero a.pink-button:not(:hover),
.event-summary .summary-buy-button:not(:hover) {
    animation: neon-pulse 1.5s infinite ease-in-out;
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .hero-content {
        width: 100%;
        text-align: center;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        margin-top: 20px;
    }
    .hero-buttons .cta-button {
        margin-right: 0;
        width: 100%;
        max-width: 320px;
    }
    .hero-media {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 16px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-media img {
        max-width: 180px;
        margin-bottom: 10px;
    }
    .event-details {
        text-align: center;
    }
    .vacancies-info {
        position: static;
        margin-top: 10px;
    }
    .target-audience .container {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .audience-content {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .audience-content h2, .audience-content p {
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }
    .audience-list {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
        justify-items: center;
    }
    .audience-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    #background-video {
        position: fixed;
        top: 50%;
        left: 50%;
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        max-width: none;
        max-height: none;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: -100;
        pointer-events: none;
    }
}

/* Removendo estilos que escondem o formulário */
.form-group label,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input::placeholder,
#registration-form button,
.terms,
.terms a,
.terms a:hover,
#form-status,
#form-status.success,
#form-status.error {
    display: block; /* Alterado de 'none' para 'block' */
}

/* Ajustando o layout da seção de registro */
.register-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.event-summary {
    flex-basis: 40%;
    min-width: 300px;
}

/* Estilos do Formulário */
.form-container {
    flex-basis: 55%;
    min-width: 300px;
    flex-grow: 1;
    background-color: transparent;
}

.form-container > p {
    text-align: left;
    margin-bottom: 30px;
    color: #bbb;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    background-color: #333;
    color: #f0f0f0;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: #888;
}

#registration-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.terms {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 15px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.terms, .terms *, .terms a {
    display: inline;
    white-space: nowrap;
    vertical-align: baseline;
}

@media (max-width: 500px) {
    .terms {
        font-size: 0.7rem;
    }
}

.terms a {
    color: #e83e8c;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

#form-status {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}

#form-status.success {
    color: #28a745;
}

#form-status.error {
    color: #dc3545;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #232325;
    border-radius: 4px;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    margin: 32px 0 24px 0;
    padding: 18px 0 10px 0;
    text-align: center;
}

.summary-grid div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.summary-grid div span {
    color: #e83e8c !important;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 2px;
    display: block;
}

.summary-grid div p {
    color: #ccc !important;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
}