/* Importação da fonte Montserrat do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* Estilos Globais e Reset */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Barra de Navegação */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 30px; /* Ajuste o tamanho do logo */
}

.nav-links ul {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e54b67;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-pre-register,
.btn-partner {
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-pre-register {
    background-color: #d11e74;
    color: #fff;
}

.btn-partner {
    background-color: #333;
    color: #fff;
}

.btn-pre-register:hover {
    background-color: #d11e74;
}

.btn-partner:hover {
    background-color: #555;
}

.lang-selector {
    color: #888;
    font-size: 14px;
}

.lang-selector a {
    color: #007bff;
}

/* Seção Principal (Hero) */
.hero-section {
    background-color: #e54b67;
    color: #fff;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.1rem;
    margin: 0;
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.btn-cta {
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-pre-register-2026 {
    background-color: #e54b67;
    color: #fff;
}

.btn-partner-us {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-pre-register-2026:hover {
    background-color: #e54b67;
}

.btn-partner-us:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-image {
    flex: 1; /* ocupa metade */
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* faz a imagem preencher sem distorcer */
}





/* Seção de Estatísticas (Stats) */
.stats-section {
    background-color: #d11e74;
    padding: 40px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0b1a2e;
}

.stat-label {
    font-size: 1.2rem;
    color: #555;
    margin-top: 5px;
}

/* Seção de Citações (Quotes) */
.quotes-section {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.quotes-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-card {
    display: flex;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.quote-card:nth-child(even) {
    flex-direction: row-reverse;
}

.quote-image-block {
    flex: 1;
    min-width: 50%;
}

.quote-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quote-text-block {
    flex: 1;
    padding: 40px;
}

.quote-text-block h3 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.quote-text-block p {
    font-size: 1rem;
    font-style: italic;
    color: #e0e0e0;
}

/* Cores das citações */
.pink-bg {
    background-color: #d1007a;
}

.orange-bg {
    background-color: #e54b67;
}

.purple-bg {
    background-color: #e54b67;
}



/* Seção de Parceiros */
.partners-section {
    background-color: #d11e74;
    padding: 60px 0;
    text-align: center;
}

.btn-view-all-speakers {
    display: inline-block;
    background-color: #e54b67;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 40px;
    transition: background-color 0.3s ease;
}

.btn-view-all-speakers:hover {
    background-color: #e54b67;
}

.partners-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card img {
    max-width: 100px;
    max-height: 50px;
    height: auto;
    display: block;
}

/* Seção Por que Rio */
.why-rio-section {
    background-color: #fff;
    padding: 60px 0;
}

.why-rio-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-rio-image-block {
    flex: 1;
    position: relative;
    height: 400px;
    min-width: 300px;
}

.rio-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.why-rio-card {
    position: absolute;
    width: 50%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.why-rio-card:first-of-type {
    bottom: 20px;
    left: 20px;
}

.why-rio-card.orange-border {
    top: 20px;
    right: -10%;
    border: 3px solid #e54b67;
}

.why-rio-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.why-rio-text-block {
    flex: 1;
}

.why-rio-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.why-rio-text-block p {
    font-size: 1.1rem;
    color: #555;
}

/* Secção Newsletter */
.newsletter-section {
    background-color: #d11e74;
    color: #fff;
    padding: 60px 0;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.newsletter-form-block {
    flex: 1;
}

.newsletter-form-block h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-form-block p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #eee;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.form-group input[type="email"],
.form-group input[type="text"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    font-size: 1rem;
}

.form-terms {
    margin-top: 20px;
}

.form-terms a {
    color: #ff9100;
    text-decoration: underline;
}

.btn-submit-newsletter {
    display: inline-block;
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    background-color: #FDE74C;
    color: black;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.btn-submit-newsletter:hover {
    background-color: #e68000;
}

.newsletter-image-block {
    flex: 1;
}

.newsletter-image-block img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Rodapé (Footer) */
.main-footer {
    background-color: #fff;
    color: #333;
    padding: 60px 0 20px 0;
    font-size: 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
}

.footer-column {
    flex-basis: 20%;
    min-width: 150px;
}

.footer-logo {
    height: 30px;
    margin-bottom: 10px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #555;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #FDE74C;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-social-media a {
    color: #555;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.footer-social-media a:hover {
    color: #FDE74C;
}

.footer-links-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links-bottom a {
    font-size: 0.9rem;
    color: #555;
}

.footer-links-bottom a:hover {
    text-decoration: underline;
}

.lang-selector-bottom {
    font-size: 0.9rem;
    color: #888;
}

.lang-selector-bottom a {
    color: #FDE74C;
}

/* Responsividade básica */
@media (max-width: 992px) {
    .hero-content,
    .why-rio-content,
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        order: 2;
    }
    .hero-image {
        order: 1;
        padding-left: 0;
        margin-bottom: 30px;
    }
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-rio-text-block {
        margin-top: 30px;
    }
    .why-rio-image-block {
        width: 100%;
        height: 300px;
    }
    .quote-card {
        flex-direction: column;
        text-align: center;
    }
    .quote-card:nth-child(even) {
        flex-direction: column;
    }
    .quote-text-block {
        padding: 20px;
    }
    .footer-columns {
        flex-direction: column;
        gap: 20px;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .footer-links-bottom {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    .nav-container {
        justify-content: center;
    }
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* PALESTRANTES  */


/* Importação da fonte Montserrat do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* Estilos Globais e Reset */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f7f7f7;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Barra de Navegação */
.navbar {
    background-color:  #d11e74;;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 30px;
}

.nav-links ul {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #555;
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d11e74;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-pre-register,
.btn-partner {
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-pre-register {
    background-color: #ed2133;
    color: #fff;
}

.btn-partner {
    background-color: #333;
    color: #fff;
}

.btn-pre-register:hover {
    background-color: #c41e2b;
}

.btn-partner:hover {
    background-color: #555;
}

.lang-selector {
    color: #888;
    font-size: 14px;
}

.lang-selector a {
    color: #d11e74;
}



.btn-pre-register-2026 {
    background-color: #d11e74;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-pre-register-2026:hover {
    background-color: #d11e74;
}


.btn-view-all-speakers {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    background-color: #ed2133;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-view-all-speakers:hover {
    background-color: #c41e2b;
}

/* Rodapé (Footer) */
.main-footer {
    background-color: #fff;
    color: #333;
    padding: 60px 0 20px 0;
    font-size: 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
}

.footer-column {
    flex-basis: 20%;
    min-width: 150px;
}

.footer-logo {
    height: 30px;
    margin-bottom: 10px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #555;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d11e74;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-social-media a {
    color: #555;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.footer-social-media a:hover {
    color: #007bff;
}

.footer-links-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links-bottom a {
    font-size: 0.9rem;
    color: #555;
}

.footer-links-bottom a:hover {
    text-decoration: underline;
}

.lang-selector-bottom {
    font-size: 0.9rem;
    color: #888;
}

.lang-selector-bottom a {
    color: #007bff;
}


@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    .nav-container {
        justify-content: center;
    }
    .speakers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }
}

/* STARTUP */

/* Importação da fonte Montserrat do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* Estilos Globais e Reset */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f7f7f7;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Barra de Navegação */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    ;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 30px;
}

.nav-links ul {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #555;
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d11e74;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-pre-register,
.btn-partner {
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-pre-register {
    background-color: #ed2133;
    color: #fff;
}

.btn-partner {
    background-color: #333;
    color: #fff;
}

.btn-pre-register:hover {
    background-color: #c41e2b;
}

.btn-partner:hover {
    background-color: #555;
}

.lang-selector {
    color: #888;
    font-size: 14px;
}

.lang-selector a {
    color: #FDE74C;
}

/* Secção de Startup */
.startup-section {
    padding-top: 80px;
    background-color: #e54b67;
    color: #fff;
}

.startup-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.startup-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.startup-text-block {
    flex: 1;
}

.startup-text-block h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.startup-text-block p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    font-size: 1rem;
}

.btn-submit-startup {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    background-color: #ed2133;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit-startup:hover {
    background-color: #c41e2b;
}

.startup-image-block {
    flex: 1;
}

.startup-image-block img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Seção de Estatísticas (Stats) */
.stats-section {
    background-color: #d11e74;
    padding: 40px 0;
    color: #fff;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Seção de Investidores */
.investor-section {
    background-color: #e54b67;
    color: #fff;
    padding-top: 80px;
    padding-bottom: 60px;
}

.investor-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin: 0 0 40px 0;
    padding: 40px 0;
}

.investor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.investor-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.investor-card:hover {
    transform: translateY(-5px);
}

.investor-card img {
    width: 100%;
    height: auto;
    display: block;
}

.investor-info {
    padding: 15px;
    color: #333;
    text-align: center;
}

.investor-info h3 {
    font-size: 1.2rem;
    margin: 0 0 5px 0;
}

.investor-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}


/* Rodapé (Footer) */
.main-footer {
    background-color: #fff;
    color: #333;
    padding: 60px 0 20px 0;
    font-size: 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
}

.footer-column {
    flex-basis: 20%;
    min-width: 150px;
}

.footer-logo {
    height: 30px;
    margin-bottom: 10px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #555;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #007bff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-social-media a {
    color: #555;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.footer-social-media a:hover {
    color: #007bff;
}

.footer-links-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links-bottom a {
    font-size: 0.9rem;
    color: #555;
}

.footer-links-bottom a:hover {
    text-decoration: underline;
}

.lang-selector-bottom {
    font-size: 0.9rem;
    color: #888;
}

.lang-selector-bottom a {
    color: #007bff;
}

/* Responsividade básica */
@media (max-width: 992px) {
    .startup-content {
        flex-direction: column;
        text-align: center;
    }
    .startup-text-block {
        order: 2;
    }
    .startup-image-block {
        order: 1;
        margin-bottom: 30px;
    }
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }
    .investor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-columns {
        flex-direction: column;
        gap: 20px;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .footer-links-bottom {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    .nav-container {
        justify-content: center;
    }
    .investor-grid {
        grid-template-columns: 1fr;
    }
}


/* Estilos Gerais para a Seção */
.web-summit-section {
  font-family: Arial, sans-serif;
  padding: 40px 0;
  background-color: #f7f7f7; /* Cor de fundo para a seção inteira */
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Estilos para o Conteúdo Principal (Texto e Imagens) */
.main-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.text-content h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.visual-content {
  flex: 1;
  min-width: 300px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.visual-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stats-container {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-box {
  background-color: #fff;
  color: #d11e74;
  padding: 15px 20px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #777;
}

/* Estilos para a Seção de Testemunho */
.testimonial-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 800px;
  position: relative;
}

.quote-icon {
  font-size: 6rem;
  color: #d11e74;
  line-height: 1;
  position: absolute;
  left: 20px;
  top: -20px;
  font-family: serif;
}

.quote-content {
  padding-left: 60px; /* Espaço para o ícone de aspas */
}

.quote-content h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.quote-content p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.profile-card {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d11e74;
}

.profile-text h4 {
  font-size: 1.2rem;
  margin: 0;
  color: #333;
}

.profile-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
}

/* Media Query para responsividade em telas menores */
@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
  }

  .stats-container {
    flex-direction: row;
    position: static;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .stat-box {
    flex-direction: row;
    align-items: center;
    gap: 5px;
    padding: 10px;
  }

  .quote-icon {
    font-size: 4rem;
    left: 10px;
    top: -10px;
  }

  .quote-content {
    padding-left: 40px;
  }
}


/* Estilos Gerais da Seção */
.web-summit-logos {
  font-family: Arial, sans-serif;
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.web-summit-logos .content-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Estilos para os Grupos de Logos */
.logo-group {
  margin-bottom: 60px;
}

.logo-group h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: normal;
}

/* Estilos para o Grid de Logos */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(120px, 1fr)
  ); /* Cria colunas flexíveis */
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.logo-grid img {
  max-width: 100%;
  height: auto;
  opacity: 0.7; /* Para dar aquele efeito de logo cinza */
  transition: opacity 0.3s ease;
}

.logo-grid img:hover {
  opacity: 1; /* Aumenta a opacidade no hover */
}

/* Estilos específicos para as logos de mídia, se necessário (ex: para ajustar tamanho) */
.media-logos img {
  max-width: 150px;
}

/* Media Query para telas menores, se precisar de ajustes específicos */
@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  
  .logo-group h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}


/* Estilos Gerais da Seção */
.quote-form-section {
  font-family: Arial, sans-serif;
  background-color: #fff;
}

/* Estilos para a Seção de Citações (Topo) */
.top-section-quotes {
  background-color: #e54b67; /* Cor de fundo alaranjada */
  padding: 80px 20px;
}

.top-section-quotes .content-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.quote-box {
  background-color: #fff;
  color: #333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-box p {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
}

.quote-box img {
  max-width: 120px; /* Ajuste o tamanho da logo */
  height: auto;
  margin-top: 20px;
  align-self: flex-start;
}

/* Estilos para a Seção do Formulário (Rodapé) */
.bottom-section-form {
  background-color: #0b1a2e; /* Cor de fundo azul escuro */
  color: #fff;
  padding: 60px 20px;
}

.form-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.form-text {
  flex: 1;
  min-width: 300px;
}

.form-text h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.form-text p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

.form-fields {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.form-fields label {
  font-size: 1rem;
  margin-bottom: 10px;
}

.form-fields input[type="email"] {
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 15px;
  background-color: #20354e;
  color: #fff;
}

.form-fields input[type="email"]::placeholder {
  color: #a0a0a0;
}

.form-fields button {
  padding: 15px 20px;
  background-color: #d11e74; /* Cor de fundo do botão */
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-fields button:hover {
  background-color: #a91a5c;
}

/* Media Query para responsividade */
@media (max-width: 768px) {
  .top-section-quotes .content-container {
    grid-template-columns: 1fr;
  }
  
  .quote-box p {
    font-size: 1.2rem;
  }

  .form-container {
    flex-direction: column;
    text-align: center;
  }
  
  .form-text, .form-fields {
    width: 100%;
  }

  .form-fields label {
    text-align: left;
  }
}

/* EXPOSITOR */




/* Estilos Gerais */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Estilos para a Navegação (Header) */
.main-header {
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px; /* Ajuste o tamanho da logo */
}

.main-nav .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 10px 0;
}

.header-actions button {
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.pre-register-btn {
  background-color: #d11e74;
  color: #fff;
}

.partner-btn {
  background-color: #000;
  color: #fff;
}

/* Estilos para a Seção de Destaque (Hero) */
.expositor-hero {
  background-color: #0b1a2e;
  color: #fff;
  padding: 80px 20px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.3;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 20px;
}

.partner-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}

.partner-form input {
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 15px;
}

.partner-form input::placeholder {
  color: #a0a0a0;
}

.partner-form button {
  padding: 15px 20px;
  background-color: #d11e74;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.hero-image {
  flex: 1;
  min-width: 300px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Estilos para a Seção de Logos */
.partner-logos-section {
  padding: 60px 20px;
  text-align: center;
}

.logos-container {
  max-width: 1200px;
  margin: 0 auto;
}

.logos-container h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: normal;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.partner-logo-grid img {
  max-width: 100%;
  height: auto;
  opacity: 0.7;
}

.partner-logo-grid img:hover {
  opacity: 1;
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text, .hero-image {
    width: 100%;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .partner-form {
    align-items: center;
    max-width: 100%;
  }

  .partner-logos-section h2 {
    font-size: 1.5rem;
  }
}



/* Estilos para a seção de Destaque (Hero) */
.expositor-hero {
  font-family: Arial, sans-serif;
  background-color: #0c1a2e;
  color: #fff;
  padding: 80px 20px;
}

.expositor-hero .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.expositor-hero .hero-text {
  flex: 1;
  min-width: 300px;
}

.expositor-hero .hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 0 0 10px 0;
}

.expositor-hero .subtitle {
  font-size: 1rem;
  margin: 0 0 25px 0;
}

.expositor-hero .partner-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}

.expositor-hero input[type="email"] {
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 15px;
  background-color: #fff;
  color: #000;
}

.expositor-hero input[type="email"]::placeholder {
  color: #a0a0a0;
}

.expositor-hero .partner-form button {
  padding: 15px 20px;
  background-color: #e54b67;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.expositor-hero .hero-image-container {
  flex: 1;
  min-width: 300px;
  max-width: 50%; /* Limita a largura da imagem para não ser maior que 50% */
}

.expositor-hero .hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Estilos para a seção de Logos de Parceiros */
.partner-logos-section {
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.partner-logos-section .logos-container {
  max-width: 1200px;
  margin: 0 auto;
}

.partner-logos-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: normal;
}

.partner-logos-section .partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.partner-logos-section .partner-logo-grid img {
  max-width: 100%;
  height: auto;
  opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
  .expositor-hero .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .expositor-hero .hero-image-container {
    max-width: 100%;
  }
  
  .expositor-hero .partner-form {
    align-self: stretch;
    max-width: 100%;
  }

  .expositor-hero .hero-text h1 {
    font-size: 2rem;
  }
  
  .partner-logos-section h2 {
    font-size: 1.5rem;
  }
  
  .partner-logos-section .partner-logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}


/* Estilos para a seção principal */
.photo-and-quotes-section {
  font-family: Arial, sans-serif;
}

/* Estilos para a Galeria de Fotos */
.photo-gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Para o layout irregular como na imagem */
.photo-grid img:nth-child(1) { grid-column: span 2; grid-row: span 1; }
.photo-grid img:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.photo-grid img:nth-child(3) { grid-column: span 1; grid-row: span 2; }
.photo-grid img:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.photo-grid img:nth-child(5) { grid-column: span 1; grid-row: span 2; }
.photo-grid img:nth-child(6) { grid-column: span 1; grid-row: span 1; }
.photo-grid img:nth-child(7) { grid-column: span 1; grid-row: span 1; }
.photo-grid img:nth-child(8) { grid-column: span 1; grid-row: span 2; }


/* Estilos para a Seção de Depoimentos */
.quotes-section {
  background-color: #ff6a00; /* Cor de fundo alaranjada */
  padding: 80px 20px;
}

.quotes-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  height: 400px; /* Altura para posicionar os boxes */
}

.quote-box {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-box p {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
}

.quote-box .source {
  font-size: 0.9rem;
  font-weight: bold;
  color: #555;
  margin-top: 15px;
  display: block;
}

/* Posicionamento dos boxes para ficarem como na imagem */
.top-left {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

.top-right {
  grid-area: 1 / 2 / 2 / 3;
  align-self: start;
}

.bottom-center {
  grid-area: 2 / 1 / 3 / 3;
  justify-self: center;
  align-self: end;
  width: 50%; /* Faz com que a caixa central seja mais estreita */
}

/* Responsividade */
@media (max-width: 768px) {
  .quotes-container {
    grid-template-columns: 1fr;
    height: auto;
    gap: 20px;
  }
  
  .bottom-center {
    width: 100%;
    grid-area: auto;
  }
}


/* Estilos para a seção de CTA */
.footer-cta-section {
  font-family: Arial, sans-serif;
  background-color: #0c1a2e;
  padding: 40px 20px;
  position: relative;
}

.cta-curve-separator {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #e54b67; /* Cor da seção anterior */
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
}

.cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-text h2 {
  color: #fff;
  font-size: 1.8rem;
  margin: 0;
}

.cta-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-form input {
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #fff;
  color: #000;
  min-width: 250px;
}

.cta-form button {
  padding: 12px 15px;
  background-color: #e54b67;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

/* Estilos para o Rodapé Principal */
.main-footer {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  padding: 40px 20px 20px 20px;
}

.footer-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col a {
  text-decoration: none;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-info .footer-logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-info .copyright {
  font-size: 0.8rem;
  color: #888;
}

.footer-info .social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-info .social-icons i {
  color: #fff;
  font-size: 1.2rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #888;
}

.footer-bottom .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom .footer-links a {
  text-decoration: none;
  color: #888;
  transition: color 0.3s ease;
}

.footer-bottom .footer-links a:hover {
  color: #fff;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 5px;
}

.language-selector span {
  font-weight: bold;
}

.language-selector img {
  height: 15px;
  width: auto;
}

/* Responsividade */
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-form {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .footer-info {
    text-align: center;
  }
  
  .footer-info .social-icons {
    justify-content: center;
  }
}


/* Estilos para a seção de logos (geral) */
.double-logos-section {
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.logo-group {
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

.logo-group h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: normal;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.logo-grid img {
  max-width: 100%;
  height: auto;
  opacity: 0.7; /* Para dar o efeito de logo acinzentada */
  transition: opacity 0.3s ease;
}

.logo-grid img:hover {
  opacity: 1; /* Aumenta a opacidade no hover */
}

/* Estilos específicos para as logos de investidores, se necessário */
.logo-group.investors .logo-grid img {
  max-width: 200px; /* Logos de investidores podem ser maiores */
}

/* Responsividade */
@media (max-width: 768px) {
  .logo-group h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}

/* Estilos para a seção principal de cards */
.investor-cards-section {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}

.investor-cards-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.investor-cards-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: normal;
}

.cards-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.investor-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
}

.investor-card .card-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: #fff;
  padding: 20px;
}

.investor-card .logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 15px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
}

.investor-card .logo-box img {
  max-width: 100%;
  height: auto;
}

.investor-card .card-content {
  background-color: #fff;
  padding: 25px;
}

.investor-card .card-content .card-category {
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #e54b67;
  margin: 0 0 5px 0;
}

.investor-card .card-content h3 {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0 0 10px 0;
  color: #333;
}

.investor-card .card-content .card-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.investor-card .card-content .card-meta {
  font-size: 0.8rem;
  color: #999;
  margin: 0;
}

/* Cores específicas dos cards */
.investor-card.blue-card .card-image-grid {
  background-color: #f0f8ff; /* Fundo azul claro */
}

.investor-card.pink-card .card-image-grid {
  background-color: #ffe6f0; /* Fundo rosa claro */
}

.next-section-title {
  font-size: 2rem;
  color: #333;
  margin-top: 60px;
  font-weight: normal;
}

/* Responsividade */
@media (max-width: 768px) {
  .investor-cards-section h2 {
    font-size: 1.5rem;
  }
}

/* Estilos para a seção de destaques de startups */
.startup-highlights-section {
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.startup-highlights-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.startup-highlights-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: normal;
}

.startup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-content: center;
}

.startup-card {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.startup-card:hover {
  border-color: #ddd;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.startup-card.highlighted {
  border-color: #e54b67; /* Borda rosa/vermelha para destaque */
}

.startup-card.highlighted-orange {
  border-color: #ff6a00; /* Borda laranja para destaque */
}

.startup-card .card-logo {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.startup-card .card-logo img {
  max-width: 100%;
  max-height: 100%;
}

.startup-card .startup-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.startup-card .startup-description {
  font-size: 0.9rem;
  color: #777;
  margin: 5px 0 0 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .startup-highlights-section h2 {
    font-size: 1.5rem;
  }
}

/* Estilos para a seção de depoimentos */
.investor-testimonials-section {
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.investor-testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.investor-testimonials-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: normal;
}

.testimonials-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  min-width: 250px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}

.testimonial-card .card-header {
  background-color: #e54b67; /* Fundo laranja */
  padding: 40px 20px 60px 20px;
}

.testimonial-card .card-photo-container {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  border: 4px solid #fff;
  overflow: hidden;
  transform: translateY(50%);
}

.testimonial-card .card-photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card .card-content {
  padding: 60px 20px 20px 20px;
}

.testimonial-card .speaker-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 5px 0;
}

.testimonial-card .speaker-title {
  font-size: 0.9rem;
  color: #777;
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.testimonial-card .quote {
  font-size: 1rem;
  font-style: italic;
  color: #555;
  margin: 0;
}

/* Estilos para a seção de CTA de Ingressos */
.investor-tickets-cta {
  font-family: Arial, sans-serif;
  background-color: #0c1a2e;
  color: #fff;
  padding: 60px 20px;
}

.investor-tickets-cta .cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.investor-tickets-cta .cta-text-content {
  flex: 1;
  min-width: 300px;
}

.investor-tickets-cta .cta-text-content h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin: 0 0 15px 0;
}

.investor-tickets-cta .cta-text-content p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

.investor-tickets-cta .cta-form-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.investor-tickets-cta .cta-form-content label {
  font-size: 1rem;
  margin-bottom: 5px;
}

.investor-tickets-cta .cta-form-content input[type="email"] {
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 15px;
  background-color: #fff;
  color: #000;
}

.investor-tickets-cta .cta-form-content input[type="email"]::placeholder {
  color: #a0a0a0;
}

.investor-tickets-cta .cta-form-content button {
  padding: 15px 20px;
  background-color: #e54b67;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
  .investor-testimonials-section .testimonials-grid {
    flex-direction: column;
  }
  
  .investor-tickets-cta .cta-container {
    flex-direction: column;
    text-align: center;
  }
  
  .investor-tickets-cta .cta-form-content {
    align-items: center;
  }
  
  .investor-tickets-cta .cta-form-content input,
  .investor-tickets-cta .cta-form-content button {
    width: 100%;
  }
  
  .investor-tickets-cta .cta-text-content {
    text-align: center;
  }
}


/* Estilos para a seção de CTA de Ingressos */
.investor-tickets-cta {
  font-family: Arial, sans-serif;
  background-color: #0c1a2e; /* Fundo azul escuro */
  color: #fff;
  padding: 60px 20px;
}

.investor-tickets-cta .cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.investor-tickets-cta .cta-text-content {
  flex: 1;
  min-width: 300px;
}

.investor-tickets-cta .cta-text-content h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin: 0 0 15px 0;
}

.investor-tickets-cta .cta-text-content p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

.investor-tickets-cta .cta-form-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.investor-tickets-cta .cta-form-content label {
  font-size: 1rem;
  margin-bottom: 5px;
}

.investor-tickets-cta .cta-form-content input[type="email"] {
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 15px;
  background-color: #fff;
  color: #000;
}

.investor-tickets-cta .cta-form-content button {
  padding: 15px 20px;
  background-color: #e54b67;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

/* Estilos para o Rodapé Principal */
.main-footer {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  padding: 40px 20px 20px 20px;
}

.footer-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col a {
  text-decoration: none;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-info .footer-logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-info .copyright {
  font-size: 0.8rem;
  color: #888;
}

.footer-info .social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-info .social-icons i {
  color: #fff;
  font-size: 1.2rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #888;
}

.footer-bottom .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom .footer-links a {
  text-decoration: none;
  color: #888;
  transition: color 0.3s ease;
}

.footer-bottom .footer-links a:hover {
  color: #fff;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 5px;
}

.language-selector span {
  font-weight: bold;
}

.language-selector img {
  height: 15px;
  width: auto;
}

/* Responsividade */
@media (max-width: 768px) {
  .investor-tickets-cta .cta-container {
    flex-direction: column;
    text-align: center;
  }
  
  .investor-tickets-cta .cta-form-content {
    align-items: center;
  }
  
  .investor-tickets-cta .cta-form-content input,
  .investor-tickets-cta .cta-form-content button {
    width: 100%;
  }
  
  .investor-tickets-cta .cta-text-content {
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .footer-info {
    text-align: center;
  }
  
  .footer-info .social-icons {
    justify-content: center;
  }
}

/* Estilos para a seção de herói de imprensa */
.press-hero-section {
  font-family: Arial, sans-serif;
  background-color: #e54b67; /* Fundo laranja */
  color: #fff;
  padding: 80px 20px;
  position: relative;
}

.press-hero-section .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.press-hero-section .hero-text-content {
  flex: 1;
  min-width: 300px;
}

.press-hero-section .hero-text-content h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 0 0 20px 0;
}

.press-hero-section .hero-text-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

.press-hero-section .disclaimer-text {
  font-size: 0.8rem;
  color: #f7f7f7;
  margin-bottom: 20px;
}

.press-hero-section .hero-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  max-width: 350px;
}

.press-hero-section .hero-form input {
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #fff;
  color: #000;
}

.press-hero-section .hero-form button {
  padding: 15px 20px;
  background-color: #e54b67;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.press-hero-section .hero-image-content {
  flex: 1;
  min-width: 300px;
  position: relative;
  text-align: center;
}

.press-hero-section .hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.press-hero-section .image-caption {
  position: absolute;
  bottom: 10px;
  left: 20px;
  text-align: left;
}

.press-hero-section .image-caption p {
  font-size: 0.8rem;
  margin: 0;
}

/* Estilos para a seção de recursos */
.press-resources-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}

.press-resources-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.press-resources-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: normal;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
}

.resource-card {
  height: 200px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
}

.resource-card img {
  max-width: 60px;
  margin-bottom: 15px;
}

/* Cores dos cards */
.resource-card.orange { background-color: #ff6a00; }
.resource-card.pink { background-color: #e54b67; }
.resource-card.blue { background-color: #0c1a2e; }
.resource-card.green { background-color: #4CAF50; }

/* Responsividade */
@media (max-width: 768px) {
  .press-hero-section .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .press-hero-section .hero-form {
    align-self: center;
  }
  
  .press-hero-section .hero-image-content {
    max-width: 100%;
  }

  .press-hero-section .image-caption {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
  }
}

/* Estilos para a seção principal */
.media-participants-section {
  font-family: Arial, sans-serif;
  background-color: #3b3a6e; /* Fundo roxo/azul escuro */
  color: #fff;
  padding: 60px 20px;
}

.media-participants-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.media-participants-section h2 {
  font-size: 2.2rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 40px;
}

.participants-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.participant-card {
  background-color: #fff;
  color: #333;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.participant-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.participant-card .card-caption {
  padding: 15px;
  text-align: left;
}

.participant-card .card-caption .name {
  font-weight: bold;
  font-size: 1rem;
  margin: 0 0 5px 0;
}

.participant-card .card-caption .title {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

/* Estilo para a foto grande */
.main-photo-card {
  grid-row: span 2; /* Ocupa duas linhas da grade */
}

/* Responsividade */
@media (max-width: 768px) {
  .participants-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .main-photo-card {
    grid-row: auto;
  }
}

/* Layout específico para o grid, ajustando a ordem dos elementos */
@media (min-width: 769px) {
  .participants-grid {
    grid-template-areas: 
      "main photo1 photo2"
      "main photo3 photo4"
      "main photo5 photo6";
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .main-photo-card { grid-area: main; }
  .participant-card:nth-of-type(2) { grid-area: photo1; }
  .participant-card:nth-of-type(3) { grid-area: photo2; }
  .participant-card:nth-of-type(4) { grid-area: photo3; }
  .participant-card:nth-of-type(5) { grid-area: photo4; }
  .participant-card:nth-of-type(6) { grid-area: photo5; }
  .participant-card:nth-of-type(7) { grid-area: photo6; }
}


/* Estilos para a seção de logos de mídia */
.media-logos-section {
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.media-logos-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.media-logos-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: normal;
}

.media-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.media-logo-grid img {
  max-width: 100%;
  height: auto;
  opacity: 0.9;
}

/* Estilos para a seção de compartilhar história */
.share-story-section {
  font-family: Arial, sans-serif;
  background-color: #0c1a2e;
  color: #fff;
  padding: 60px 20px;
}

.share-story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.share-story-text {
  flex: 1;
  min-width: 300px;
}

.share-story-text h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin: 0 0 15px 0;
  font-weight: normal;
}

.share-story-text p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.share-story-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: right;
}

.share-story-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
  .share-story-container {
    flex-direction: column;
    text-align: center;
  }
  
  .share-story-image {
    order: -1; /* Move a imagem para cima em telas pequenas */
  }
}

/* Estilos para a seção de vídeo */
.video-section {
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.video-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.video-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: normal;
}

.video-player-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-player-placeholder img,
.video-player-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Estilos para a seção de depoimentos de mídia */
.media-quotes-section {
  font-family: Arial, sans-serif;
  background-color: #ff6a00; /* Fundo laranja */
  padding: 60px 20px;
}

.media-quotes-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.quote-card {
  background-color: #fff;
  color: #333;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.quote-card .quote {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 10px 0;
}

.quote-card .source {
  font-size: 0.9rem;
  color: #e54b67;
  margin: 0;
}

/* Estilo para a barra de CTA da imprensa */
.press-cta-section {
  font-family: Arial, sans-serif;
  background-color: #0c1a2e; /* Fundo azul escuro */
  color: #fff;
  padding: 60px 20px;
  border-top: 2px solid #ff6a00; /* Linha laranja para separação, se necessário */
}

.press-cta-section .cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.press-cta-section .cta-text-content {
  flex: 1;
  min-width: 300px;
}

.press-cta-section .cta-text-content h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin: 0;
}

.press-cta-section .cta-form-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.press-cta-section .cta-form-content input {
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 15px;
  background-color: #fff;
  color: #000;
}

.press-cta-section .cta-form-content button {
  padding: 15px 20px;
  background-color: #e54b67;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
  .press-cta-section .cta-container {
    flex-direction: column;
    text-align: center;
  }
}


/* Estilos para a seção de CTA da imprensa */
.press-cta-section {
  font-family: Arial, sans-serif;
  background-color: #0c1a2e;
  color: #fff;
  padding: 60px 20px;
}

.press-cta-section .cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.press-cta-section .cta-text-content {
  flex: 1;
  min-width: 300px;
}

.press-cta-section .cta-text-content h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin: 0 0 10px 0;
}

.press-cta-section .cta-text-content p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.press-cta-section .cta-form-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.press-cta-section .cta-form-content input {
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  flex: 1;
}

.press-cta-section .cta-form-content button {
  padding: 15px 20px;
  background-color: #e54b67;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

/* Estilos para o Rodapé Principal */
.main-footer {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  padding: 40px 20px 20px 20px;
}

.footer-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col a {
  text-decoration: none;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-info .footer-logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-info .copyright {
  font-size: 0.8rem;
  color: #888;
}

.footer-info .social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-info .social-icons i {
  color: #fff;
  font-size: 1.2rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #888;
}

.footer-bottom .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom .footer-links a {
  text-decoration: none;
  color: #888;
  transition: color 0.3s ease;
}

.footer-bottom .footer-links a:hover {
  color: #fff;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 5px;
}

.language-selector span {
  font-weight: bold;
}

.language-selector img {
  height: 15px;
  width: auto;
}

/* Responsividade */
@media (max-width: 768px) {
  .press-cta-section .cta-container {
    flex-direction: column;
    text-align: center;
  }
  
  .press-cta-section .cta-form-content {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .footer-info {
    text-align: center;
  }
  
  .footer-info .social-icons {
    justify-content: center;
  }
}

/* Estilos para a seção de herói de desenvolvedores */
.developer-hero-section {
  font-family: Arial, sans-serif;
  background-color: #e54b67; /* Fundo vermelho/rosa */
  color: #fff;
  padding: 80px 20px;
  position: relative;
}

.developer-hero-section .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.developer-hero-section .hero-text-content {
  flex: 1;
  min-width: 300px;
}

.developer-hero-section .hero-text-content h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 0 0 20px 0;
}

.developer-hero-section .hero-text-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.developer-hero-section .hero-button {
  display: inline-block;
  padding: 15px 25px;
  background-color: #0c1a2e; /* Fundo azul escuro */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.developer-hero-section .hero-button:hover {
  background-color: #3b3a6e;
}

.developer-hero-section .hero-image-content {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.developer-hero-section .hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Estilos para a seção "O que está acontecendo?" */
.happening-now-section {
  background-color: #fff;
  padding: 60px 20px;
}

.happening-now-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.happening-now-section .happening-text-content {
  flex: 1;
  min-width: 300px;
}

.happening-now-section .happening-text-content h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: normal;
}

.happening-now-section .happening-text-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.happening-now-section .happening-image-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.happening-now-section .happening-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsividade */
@media (max-width: 768px) {
  .developer-hero-section .hero-container,
  .happening-now-section .container {
    flex-direction: column;
    text-align: center;
  }
}


/* Estilos para a seção "O que está acontecendo?" */
.happening-now-section {
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding: 60px 20px;
}

.happening-now-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.happening-now-section .happening-text-content {
  flex: 1;
  min-width: 300px;
}

.happening-now-section .happening-text-content h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: normal;
}

.happening-now-section .happening-text-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.happening-now-section .happening-image-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.happening-now-section .happening-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsividade */
@media (max-width: 768px) {
  .happening-now-section .container {
    flex-direction: column;
    text-align: center;
  }
}


/* Estilos para a seção principal de processo de inscrição */
.signup-process-section {
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.signup-process-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.signup-process-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: normal;
}

.process-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.process-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.process-card .card-image {
  flex-grow: 1; /* A imagem ocupará o espaço disponível */
}

.process-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-card .card-content {
  padding: 25px;
  color: #fff;
  text-align: left;
}

.process-card .card-content h3 {
  font-size: 1.5rem;
  margin: 0 0 10px 0;
}

.process-card .card-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Cores de fundo dos cards de conteúdo */
.card-pink {
  background-color: #e54b67;
}

.card-orange {
  background-color: #ff6a00;
}

.card-purple {
  background-color: #3b3a6e;
}

/* Estilos para a seção principal de palestrantes */
.developer-speakers-section {
  font-family: Arial, sans-serif;
  background-color: #ff6a00; /* Fundo laranja */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.developer-speakers-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.developer-speakers-section h2 {
  font-size: 2.5rem;
  font-weight: normal;
  margin-bottom: 40px;
}


.quote-block {
  max-width: 1200px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.quote-block .quote-image {
  flex: 1;
  max-width: 50%;
}

.quote-block .quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-block .quote-content {
  flex: 1;
  max-width: 50%;
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-block .quote-content .quote {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
  margin: 0 0 15px 0;
}

.quote-block .quote-content .source {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Cores de fundo para os blocos */
.block-pink {
  background-color: #e54b67;
}

.block-orange {
  background-color: #ff6a00;
}

.block-purple {
  background-color: #3b3a6e;
}

/* Responsividade */
@media (max-width: 768px) {
  .quote-block {
    flex-direction: column;
    text-align: center;
  }
  
  .quote-block .quote-image,
  .quote-block .quote-content {
    max-width: 100%;
  }

  .quote-block .quote-content {
    padding: 30px 20px;
  }
}


/* Estilos para o Rodapé Principal */
.main-footer {
  font-family: Arial, sans-serif;
  background-color: #fff; /* Fundo branco */
  color: #333;
  padding: 40px 20px 20px 20px;
}

.footer-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #000;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col a {
  text-decoration: none;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #000;
}

.footer-info .footer-logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-info .copyright {
  font-size: 0.8rem;
  color: #888;
}

.footer-info .social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-info .social-icons i {
  color: #000;
  font-size: 1.2rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #888;
}

.footer-bottom .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom .footer-links a {
  text-decoration: none;
  color: #888;
  transition: color 0.3s ease;
}

.footer-bottom .footer-links a:hover {
  color: #000;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 5px;
}

.language-selector span {
  font-weight: bold;
}

.language-selector img {
  height: 15px;
  width: auto;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .footer-info {
    text-align: center;
  }
  
  .footer-info .social-icons {
    justify-content: center;
  }
}

/* Estilos para a seção principal */
.about-websummit-section {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  padding: 80px 20px;
}

.about-websummit-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-websummit-section .text-content {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.about-websummit-section .text-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0 0 20px 0;
  color: #000;
  font-weight: normal;
}

.about-websummit-section .text-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0 0 15px 0;
}

.image-with-stats-content {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.image-with-stats-content .main-image {
  width: 100%;
  height: auto;
  display: block;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stat-box {
  background-color: rgba(255, 255, 255, 0.9); /* Fundo branco com transparência */
  border-radius: 10px;
  padding: 15px 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
}

.stat-box .stat-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #3b3a6e;
  margin: 0 0 5px 0;
}

.stat-box .stat-label {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

/* Posicionamento dos boxes de estatísticas */
.stats-overlay .stat-box:nth-child(1) {
  top: 10%;
  right: 5%;
}

.stats-overlay .stat-box:nth-child(2) {
  top: 40%;
  right: -5%;
}

.stats-overlay .stat-box:nth-child(3) {
  top: 70%;
  right: 15%;
}

/* Responsividade */
@media (max-width: 768px) {
  .about-websummit-section .container {
    flex-direction: column;
    text-align: center;
  }
  
  .about-websummit-section .text-content {
    max-width: 100%;
  }

  .stats-overlay {
    position: static;
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    gap: 10px;
  }
  
  .stat-box {
    position: static;
    flex: 1;
    padding: 10px;
  }
}


/* Estilos para os dropdowns */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%; /* Posiciona o menu abaixo do item pai */
    left: 0;
    background-color: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 100;
    min-width: 200px;
    opacity: 0; /* Começa invisível */
    visibility: hidden; /* Garante que não é interativo quando invisível */
    transform: translateY(10px); /* Começa um pouco abaixo para um efeito de slide */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Exibir o dropdown quando o mouse passar por cima */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
    white-space: nowrap; /* Evita quebra de linha em itens longos */
}

.dropdown-menu li a:hover {
    background-color: #f0f0f0;
}

/* Estilo para a seta do dropdown */
.dropdown a .fas {
    margin-left: 8px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

/* Gira a seta quando o dropdown está ativo */
.dropdown:hover a .fas {
    transform: rotate(180deg);
}

/* Outros estilos de navegação (botões, etc.) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-pre-register, .btn-partner {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
}

.btn-pre-register {
    background-color: #e54b67;
    color: #fff;
}

.btn-partner {
    background-color: #0c1a2e;
    color: #fff;
}

.lang-selector {
    font-weight: 600;
    color: #333;
}



/*  REGISTRO /*

/* ========================================================================== */
/* SEÇÃO DE PROMOÇÃO 2 POR 1 */
/* ========================================================================== */
.promo-section {
    background-color: #e54b67; /* Cor laranja */
    color: #fff;
    padding: 60px 20px;
}

.promo-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.promo-left {
    flex: 1;
    min-width: 300px;
}

.promo-left h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.promo-left p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.promo-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    box-sizing: border-box;
}

.form-terms {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.form-terms a {
    color: #fff;
    text-decoration: underline;
}

.btn-subscribe {
    background-color: #0c1a2e; /* Cor azul escura */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #1e3a5f;
}

.promo-right {
    flex: 1;
    min-width: 300px;
}

.promo-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .promo-section {
        text-align: center;
    }

    .promo-left {
        order: 2; /* Coloca o texto e formulário abaixo da imagem em telas menores */
        text-align: left;
    }

    .promo-right {
        order: 1; /* Coloca a imagem no topo em telas menores */
    }

    .promo-form {
        margin-top: 20px;
    }
}


/* ========================================================================== */
/* SEÇÃO DE MÍDIA */
/* ========================================================================== */
.media-section {
    padding: 80px 20px;
    background-color: #fff;
}

.media-logos-container {
    margin-bottom: 60px;
    text-align: center;
}

.media-logos-container h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
}

.media-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.media-logo-item img {
    max-width: 100%;
    max-height: 40px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    opacity: 0.7;
}

.media-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Seção de texto e imagem "Compartilhe a sua história" */
.share-story-container {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
    margin-top: 80px;
}

.share-story-text {
    flex: 1;
    min-width: 300px;
}

.share-story-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
}

.share-story-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.share-story-image {
    flex: 1;
    min-width: 300px;
}

.share-story-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .share-story-container {
        flex-direction: column;
    }

    .share-story-text, .share-story-image {
        text-align: center;
    }

    .share-story-text h2 {
        font-size: 1.8rem;
    }
}

/* ========================================================================== */
/* SEÇÃO HERO COM VÍDEO */
/* ========================================================================== */
.hero-video-section {
    background-color: #e54b67;
    padding: 60px 20px;
    color: #fff;
}

.hero-video-section .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text-content {
    flex: 1;
    min-width: 300px;
}

.hero-text-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text-content .event-date {
    font-size: 1.2rem;
    font-weight: 500;
}

.hero-video-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================================================== */
/* SEÇÃO DE CITAÇÕES */
/* ========================================================================== */
.highlight-quotes-section {
    padding: 60px 20px;
    background-color: #fff;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.highlight-quote-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.highlight-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.quote-box {
    background-color: #f0f0f0; /* Cor de fundo da caixa */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.quote-box p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px;
}

.quote-box span {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

/* ========================================================================== */
/* RESPONSIVIDADE */
/* ========================================================================== */
@media (max-width: 768px) {
    .hero-container,
    .highlight-quote-item {
        flex-direction: column;
    }
}

/* ========================================================================== */
/* SEÇÃO DE DESTAQUES E CITAÇÕES */
/* ========================================================================== */
.highlight-quotes-section {
    padding: 60px 20px;
    background-color: #fff;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.highlight-quote-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.highlight-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.quote-box {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.quote-box p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px;
}

.quote-box span {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .highlight-quote-item {
        grid-template-columns: 1fr;
    }
}


/* Estilos para a seção de programa de startups */
.startup-program-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.startup-program-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.startup-program-text {
    flex: 1;
}

.startup-program-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.startup-program-text p {
    font-size: 1rem;
    line-height: 1.6;
}

.startup-program-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.startup-program-stats img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-box {
    background-color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
}

.stat-box .stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    color: #e54b67;
}

.stat-box .stat-label {
    font-size: 1rem;
    color: #555;
    text-transform: uppercase;
}

.startup-program-stats .stat-box:first-of-type {
    top: 5%;
    right: 5%;
}

.startup-program-stats .stat-box:last-of-type {
    bottom: 5%;
    left: 5%;
}

/* Estilos para a seção de citação */
.quote-section {
    padding: 40px 20px;
    background-color: #f8f8f8;
}

.quote-content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.quote-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.quote-speaker {
    flex: 0 0 250px;
    text-align: center;
    padding: 20px;
    background-color: #e54b67;
    border-radius: 8px;
    color: #fff;
}

.quote-speaker img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.quote-speaker h4 {
    margin: 0;
    font-size: 1.2rem;
}

.quote-speaker p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #f0f0f0;
}

.quote-text {
    flex: 1;
    position: relative;
}

.quote-text::before {
    content: '"';
    font-size: 4rem;
    color: #ccc;
    position: absolute;
    top: -20px;
    left: -20px;
}

.quote-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Responsividade */
@media (max-width: 768px) {
    .startup-program-container,
    .quote-card {
        flex-direction: column;
        text-align: center;
    }

    .startup-program-stats .stat-box:first-of-type,
    .startup-program-stats .stat-box:last-of-type {
        position: static;
        margin-top: 15px;
    }
}

/* ========================================================================== */
/* SEÇÃO: O WEB SUMMIT É "ONDE O FUTURO NASCE" */
/* ========================================================================== */
.about-websummit-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-content {
    flex: 1;
    min-width: 300px;
}

.about-text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-image-stats {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image-stats img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.stat-box {
    background-color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    text-align: center;
}

.stat-box .stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    color: #e54b67;
}

.stat-box .stat-label {
    font-size: 1rem;
    color: #555;
    text-transform: uppercase;
}

.top-right {
    top: 5%;
    right: 5%;
}

.center-right {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

.bottom-left {
    bottom: 5%;
    left: 5%;
}

/* Responsividade */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .stat-box.top-right,
    .stat-box.center-right,
    .stat-box.bottom-left {
        position: static;
        transform: none;
        margin-top: 15px;
    }
    
    .about-image-stats {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}



.filter-dropdowns {
    display: flex;
    gap: 10px;
}

.filter-dropdowns select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    font-size: 1rem;
}


}

/* ========================================================================== */
/* SEÇÃO HERO VERMELHA */
/* ========================================================================== */
.hero-red-section {
    background-color: #e54b67;
    color: #fff;
    padding: 60px 20px;
}

.hero-red-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-content {
    flex: 1;
    min-width: 300px;
}

.hero-text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-hero-preregister {
    display: inline-block;
    background-color: #e54b67;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-hero-preregister:hover {
    background-color: #e07f0f;
}

.hero-image-content {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.hero-image-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}


/* ========================================================================== */
/* SEÇÃO: COMPRE INGRESSOS */
/* ========================================================================== */
.buy-tickets-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.buy-tickets-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.buy-tickets-content {
    flex: 1;
    min-width: 300px;
}

.buy-tickets-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.buy-tickets-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.btn-primary {
    display: inline-block;
    background-color: #e54b67;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #d13a52;
}

.buy-tickets-image {
    flex: 1;
    min-width: 300px;
}

.buy-tickets-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .buy-tickets-container {
        flex-direction: column;
        text-align: center;
    }

    .buy-tickets-content, .buy-tickets-image {
        width: 100%;
    }
}

/* ========================================================================== */
/* SEÇÃO HERO DE PROGRAMAÇÃO */
/* ========================================================================== */
.hero-schedule-section {
    background-color: #e54b67;
    color: #fff;
    padding: 60px 20px;
}

.hero-schedule-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-content {
    flex: 1;
    min-width: 300px;
}

.hero-text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-hero-preregister {
    display: inline-block;
    background-color: #f7941d;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-hero-preregister:hover {
    background-color: #e07f0f;
}

.hero-image-content {
    flex: 1;
    min-width: 300px;
}

.hero-image-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .hero-schedule-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================================================== */
/* SEÇÃO DE PROGRAMAÇÃO DETALHADA */
/* ========================================================================== */
.schedule-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

.schedule-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-filters-column {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-search-input,
.schedule-filters-column select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #fff;
}

.btn-reset {
    padding: 12px 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    color: #e54b67;
}

.schedule-content-column {
    flex: 1;
}

.schedule-date-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.schedule-date-navigation h3 {
    font-size: 1.5rem;
    margin: 0;
}

.date-buttons {
    display: flex;
    gap: 10px;
}

.date-btn {
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #f0f0f0;
    color: #555;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.date-btn.active {
    background-color: #e54b67;
    color: #fff;
}

.event-card {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.event-tag {
    display: inline-block;
    background-color: e54b67;;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 5px;
}

.event-details {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.event-speakers {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}


/* --- Estilos para a Seção Hero --- */
.hero-section {
    display: flex;
    align-items: center;
    background-color: #f7f7f7; /* Fundo cinza claro */
    color: #333;
    padding: 60px 0;
}

.hero-content {
    flex: 1;
    padding: 0 50px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-text); /* ou #333 */
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-primary-purple {
    background-color: #5156be; /* O azul arroxeado da sua paleta */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-primary-purple:hover {
    background-color: #43479a;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 500px; /* Altura fixa para o contêiner da imagem */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-text); /* Fundo da imagem escuro */
    overflow: hidden; /* Garante que a imagem não saia do contêiner */
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        padding: 40px 20px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-image {
        height: 400px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 30px 15px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .btn-primary-purple {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    .hero-image {
        height: 250px;
    }
}

/* --- Estilos para a Seção "O que são startups de impacto?" --- */
.startups-section {
    background-color: var(--light-gray); /* Fundo cinza claro */
    padding: 80px 0;
}

.startups-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.startups-image-column {
    flex: 1;
}

.startups-image-column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.startups-text-column {
    flex: 1;
}

.startups-text-column h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.startups-text-column p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.startups-text-column ul {
    list-style-type: none; /* Remove os marcadores de lista padrão */
    padding-left: 0;
}

.startups-text-column ul li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.startups-text-column ul li:before {
    content: "\2022"; /* Adiciona um círculo como marcador, similar à imagem */
    color: var(--primary-red); /* Cor dos marcadores */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}


.startups-footer {
    text-align: center;
    margin-top: 50px;
}

.startups-footer h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
}


/* Responsividade para a seção */
@media (max-width: 992px) {
    .startups-grid {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }
    .startups-text-column h2,
    .startups-footer h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .startups-grid {
        padding: 20px;
        gap: 20px;
    }
    .startups-text-column h2,
    .startups-footer h3 {
        font-size: 1.5rem;
    }
    .startups-text-column p,
    .startups-text-column ul li {
        font-size: 0.9rem;
    }
    .startups-footer {
        margin-top: 30px;
    }
}

/* --- Estilos para a Seção de Parceiros --- */
.parceiros-section {
    background-color: var(--light-gray); /* Fundo cinza claro */
    padding: 60px 0;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* 5 colunas em telas grandes */
    gap: 20px;
    margin-bottom: 20px;
}

.parceiro-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Para alinhar o texto e a descrição */
}

.parceiro-card img {
    max-width: 80%;
    max-height: 50px;
    margin: 0 auto 15px auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.parceiro-card img:hover {
    transform: scale(1.05);
}

.parceiro-name {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.parceiro-description {
    font-size: 0.85rem;
    color: #666;
}


/* Responsividade para a grade de parceiros */
@media (max-width: 1200px) {
    .parceiros-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 992px) {
    .parceiros-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    .parceiro-card {
        padding: 15px;
    }
    .parceiro-card img {
        max-height: 40px;
    }
    .parceiro-name {
        font-size: 0.9rem;
    }
    .parceiro-description {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .parceiros-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em telas menores */
    }
    .parceiros-section {
        padding: 40px 0;
    }
}

/* --- Estilos para a Seção Hero de Startups --- */
.hero-startups-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-color: #e54b67; /* Cor laranja do fundo */
    min-height: 700px;
}

.hero-startups-content {
    flex: 1;
    padding: 80px 50px;
    color: #fff;
    max-width: 50%;
}

.hero-startups-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-startups-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-form .form-field {
    margin-bottom: 20px;
}

.hero-form label {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
}

.hero-form input[type="email"],
.hero-form input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

.hero-form input::placeholder {
    color: #999;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.4;
}

.btn-alpha-2026 {
    background-color: var(--primary-red); /* Cor vermelha do botão */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-alpha-2026:hover {
    background-color: #c0392b;
}

.hero-startups-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-startups-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-startups-section {
        flex-direction: column;
    }
    .hero-startups-content {
        max-width: 100%;
        padding: 40px 20px;
    }
    .hero-startups-content h1 {
        font-size: 2.5rem;
    }
    .hero-startups-image {
        height: 400px;
    }
}
@media (max-width: 768px) {
    .hero-startups-content h1 {
        font-size: 2rem;
    }
    .hero-startups-image {
        height: 300px;
    }
}

/* --- Estilos para a Seção Hero de Credenciamento --- */
.hero-credenciamento-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.hero-content-left {
    flex: 1;
    background-color: #ff914d; /* Cor laranja do fundo */
    padding: 80px 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-text-small {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

.form-input::placeholder {
    color: #999;
}

.btn-submit {
    background-color: #e74c3c; /* Vermelho do botão */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #c0392b;
}

.hero-disclaimer {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #333;
}

.hero-image-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 50%;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-credenciamento-section {
        flex-direction: column;
    }
    .hero-content-left {
        max-width: 100%;
        padding: 40px 20px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-image-right {
        max-width: 100%;
        height: 400px;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-image-right {
        height: 300px;
    }
    .btn-submit {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
}

/* --- Estilos para a Seção Hero de Startups --- */
.hero-startups-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-color: #ff914d; /* Cor laranja do fundo */
    min-height: 700px;
}

.hero-startups-content {
    flex: 1;
    padding: 80px 50px;
    color: #fff;
    max-width: 50%;
}

.hero-startups-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-startups-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-form .form-field {
    margin-bottom: 20px;
}

.hero-form label {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
}

.hero-form input[type="email"],
.hero-form input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

.hero-form input::placeholder {
    color: #999;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.4;
}

.btn-alpha-2026 {
    background-color: var(--primary-red); /* Cor vermelha do botão */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-alpha-2026:hover {
    background-color: #c0392b;
}

.hero-startups-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-startups-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-startups-section {
        flex-direction: column;
    }
    .hero-startups-content {
        max-width: 100%;
        padding: 40px 20px;
    }
    .hero-startups-content h1 {
        font-size: 2.5rem;
    }
    .hero-startups-image {
        height: 400px;
    }
}
@media (max-width: 768px) {
    .hero-startups-content h1 {
        font-size: 2rem;
    }
    .hero-startups-image {
        height: 300px;
    }
}

/* --- Estilos para a Seção de Investidores --- */
.investidores-section {
    background-color: #fff;
    padding: 80px 0;
}

.investidores-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 10px;
}

.investidores-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.investidores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.investidor-card {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investidor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.logo-wrapper {
    height: 60px; /* Altura fixa para alinhar os logos */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.investidor-card img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

.investidor-name {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.investidor-description {
    font-size: 0.85rem;
    color: #666;
}


/* Responsividade para a grade de investidores */
@media (max-width: 1200px) {
    .investidores-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}
@media (max-width: 992px) {
    .investidores-title {
        font-size: 1.8rem;
    }
    .investidores-text {
        font-size: 0.9rem;
    }
    .investidores-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .investidores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Estilos para a Seção Hero da HSM Academy --- */
.hero-hsm-academy-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000; /* Fundo preto */
    color: #fff;
    min-height: 80vh; /* Altura mínima da tela */
}

.hero-hsm-content {
    flex: 1;
    padding: 80px 50px;
    max-width: 50%;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-hsm-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 550px;
}

.btn-quero-conhecer {
    display: inline-block;
    background-color: #e74c3c; /* Cor laranja avermelhada */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-quero-conhecer:hover {
    background-color: #c0392b;
}

.hero-hsm-image {
    flex: 1;
    max-width: 50%;
    height: 100%;
    overflow: hidden;
}

.hero-hsm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-hsm-academy-section {
        flex-direction: column;
        min-height: auto;
    }
    .hero-hsm-content {
        max-width: 100%;
        padding: 40px 20px;
        text-align: center;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-hsm-image {
        max-width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-hsm-content h1 {
        font-size: 1.8rem;
    }
    .hero-hsm-image {
        height: 300px;
    }
}

/* ========================================================================== */
/* SEÇÃO DE COMPROMISSO */
/* ========================================================================== */
.commitment-section {
    padding: 80px 20px;
    background-color: #e54b67;
}

.commitment-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-text-column {
    flex: 1;
}

.commitment-text-column h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.commitment-text-column p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.commitment-image-column {
    flex: 1;
    position: relative;
    padding-left: 20px;
}

.commitment-image-column img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.commitment-stats-box {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 4px solid #e54b67;
}

.stats-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #e54b67;
}

.stats-label {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .commitment-container {
        flex-direction: column;
    }
    .commitment-text-column,
    .commitment-image-column {
        width: 100%;
    }
    .commitment-image-column {
        padding-left: 0;
        margin-top: 50px;
    }
    .commitment-stats-box {
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
    }
}

/* --- Estilos para a Seção Hero de Startups --- */
.hero-startups-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-color: #e54b67;
    min-height: 700px;
}

.hero-startups-content {
    flex: 1;
    padding: 80px 50px;
    color: #fff;
    max-width: 50%;
}

.hero-startups-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-startups-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-form .form-field {
    margin-bottom: 20px;
}

.hero-form label {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
}

.hero-form input[type="email"],
.hero-form input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

.hero-form input::placeholder {
    color: #999;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.4;
}

.btn-alpha-2026 {
    background-color: #e74c3c; /* Cor vermelha do botão */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-alpha-2026:hover {
    background-color: #c0392b;
}

.hero-startups-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-startups-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-startups-section {
        flex-direction: column;
    }
    .hero-startups-content {
        max-width: 100%;
        padding: 40px 20px;
    }
    .hero-startups-content h1 {
        font-size: 2.5rem;
    }
    .hero-startups-image {
        height: 400px;
    }
}
@media (max-width: 768px) {
    .hero-startups-content h1 {
        font-size: 2rem;
    }
    .hero-startups-image {
        height: 300px;
    }
}

/* --- Estilos para a Seção "Compromisso" --- */
.compromisso-section {
    background-color: #fff;
    padding: 80px 0;
}

.compromisso-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.compromisso-content {
    flex: 1;
    max-width: 500px;
}

.compromisso-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
}

.compromisso-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.compromisso-image-card {
    flex: 1;
    max-width: 500px;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.compromisso-image-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .compromisso-container {
        flex-direction: column;
        text-align: center;
    }
    .compromisso-content,
    .compromisso-image-card {
        max-width: 100%;
    }
    .compromisso-image-card {
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .compromisso-content h2 {
        font-size: 2rem;
    }
    .compromisso-content p {
        font-size: 0.9rem;
    }
}

/* --- Estilos para a Seção "Nossa Comunidade" --- */
.community-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e54b67; /* Cor laranja do fundo */
    padding: 80px 50px;
}

.community-content-left {
    flex: 1;
    color: #fff;
    max-width: 50%;
}

.community-content-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.community-content-left p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.community-visuals-right {
    flex: 1;
    max-width: 50%;
    position: relative;
    padding: 20px;
}

.community-visuals-right img {
    width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block;
}

.stat-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #000;
    width: 200px;
}

.stat-card-top {
    top: 0;
    right: 20%;
}

.stat-card-middle {
    bottom: 30%;
    right: 0;
}

.stat-card-bottom {
    bottom: 0;
    right: 20%;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c; /* Cor vermelha para os números */
    line-height: 1;
    margin-bottom: 5px;
}

.stat-description {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .community-section {
        flex-direction: column;
        padding: 40px 20px;
    }
    .community-content-left,
    .community-visuals-right {
        max-width: 100%;
    }
    .community-content-left {
        margin-bottom: 30px;
    }
    .community-visuals-right {
        position: relative;
    }
    .stat-card {
        position: static; /* Remove o posicionamento absoluto em telas menores */
        margin: 15px auto;
        width: 80%;
    }
    .stat-card-top,
    .stat-card-middle,
    .stat-card-bottom {
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
    }
}
@media (max-width: 768px) {
    .community-content-left h2 {
        font-size: 2rem;
    }
}

/* --- Estilos para a Seção de Embaixadoras --- */
.ambassadors-section {
    background-color: #f7f7f7;
    padding: 80px 20px;
    text-align: center;
}

.ambassadors-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 50px;
}

.ambassadors-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ambassador-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    padding-bottom: 20px;
    flex: 1;
    max-width: 380px;
}

.ambassador-card .card-header {
    background-color: #ff914d; /* Laranja do header */
    height: 120px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.ambassador-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    position: absolute;
    top: 55px; /* Posiciona a imagem no meio do header e body */
    left: 50%;
    transform: translateX(-50%);
}

.ambassador-card .card-body {
    padding: 75px 25px 0;
    text-align: center;
}

.ambassador-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.ambassador-card .card-title {
    font-size: 0.9rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 20px;
}

.ambassador-card .card-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
}

/* Responsividade */
@media (max-width: 992px) {
    .ambassadors-container {
        flex-direction: column;
        align-items: center;
    }
    .ambassador-card {
        max-width: 500px;
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .ambassadors-section h2 {
        font-size: 2rem;
    }
}

/* --- Estilos para a Seção de Estatísticas e Benefícios --- */
.stats-and-features-section {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.stats-and-features-section .content-wrapper {
    max-width: 800px;
    margin: 0 auto 50px;
}

.stats-and-features-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 10px;
}

.stats-and-features-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #fff;
    padding: 20px;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    text-align: left;
}

/* Responsividade */
@media (max-width: 1200px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .stats-and-features-section h2 {
        font-size: 2rem;
    }
    .features-container {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    .feature-card {
        margin-bottom: 20px;
    }
}

/* --- Estilos para a Seção de Mulheres em Destaque --- */
.women-in-tech-section {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.women-in-tech-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 50px;
}

.ambassadors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
}

.profile-card img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-info {
    padding: 20px 10px;
}

.profile-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px;
}

.profile-info p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* Responsividade */
@media (max-width: 1200px) {
    .ambassadors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .women-in-tech-section h2 {
        font-size: 2rem;
    }
    .ambassadors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ambassadors-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Estilos para a Seção Hero de Voluntariado --- */
.volunteer-hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #55337b; /* Cor roxa do fundo */
    color: #fff;
    padding: 80px 50px;
}

.volunteer-content-left {
    flex: 1;
    max-width: 50%;
    padding-right: 40px;
}

.volunteer-content-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.volunteer-content-left p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.volunteer-form .form-group {
    margin-bottom: 20px;
}

.volunteer-form label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.volunteer-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
}

.btn-register {
    background-color: #e74c3c; /* Cor vermelha do botão */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-register:hover {
    background-color: #c0392b;
}

.volunteer-image-right {
    flex: 1;
    max-width: 50%;
}

.volunteer-image-right img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .volunteer-hero-section {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }
    .volunteer-content-left,
    .volunteer-image-right {
        max-width: 100%;
    }
    .volunteer-content-left {
        margin-bottom: 30px;
        padding-right: 0;
    }
    .btn-register {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .volunteer-content-left h2 {
        font-size: 2rem;
    }
}

/* --- Estilos para a Seção "Antes de você se inscrever" --- */
.before-you-register-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 80px 50px;
    gap: 50px;
}

.content-left {
    flex: 1;
    max-width: 50%;
}

.content-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
}

.content-left p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.image-right {
    flex: 1;
    max-width: 50%;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.image-right img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .before-you-register-section {
        flex-direction: column;
        padding: 40px 20px;
    }
    .content-left,
    .image-right {
        max-width: 100%;
    }
    .content-left {
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .content-left h2 {
        font-size: 2rem;
    }
}

/* --- Estilos para a Seção "Benefícios de ser voluntário" --- */
.volunteer-benefits-section {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.volunteer-benefits-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.benefit-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    /* Optional subtle shadow, not very visible in the image but good practice */
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.05); */
}

.benefit-card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    padding: 20px;
}

.card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px;
}

.card-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .volunteer-benefits-section h2 {
        font-size: 2rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Estilos para a Seção "Faça parte da ação" --- */
.join-the-action-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 80px 50px;
    gap: 50px;
}

.join-the-action-section .content-left {
    flex: 1;
    max-width: 50%;
}

.join-the-action-section .content-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
}

.join-the-action-section .content-left p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.join-the-action-section .image-right {
    flex: 1;
    max-width: 50%;
}

.join-the-action-section .image-right img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .join-the-action-section {
        flex-direction: column;
        padding: 40px 20px;
    }
    .join-the-action-section .content-left,
    .join-the-action-section .image-right {
        max-width: 100%;
    }
    .join-the-action-section .content-left {
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .join-the-action-section .content-left h2 {
        font-size: 2rem;
    }
}

/* --- Estilos para a Seção de Depoimentos --- */
.testimonials-section {
    background-color: #fff;
    padding: 80px 50px;
}

.testimonial-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card:last-child {
    margin-bottom: 0;
}

.card-image {
    flex: 1;
    min-width: 50%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-quote {
    flex: 1;
    min-width: 50%;
    color: #fff;
    padding: 30px;
}

.card-quote p {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 15px;
}

.card-quote h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

/* Cores de fundo específicas para cada card */
.testimonial-card-1 .card-quote {
    background-color: #e93883; /* Cor magenta */
}

.testimonial-card-2 .card-quote {
    background-color: #ffc900; /* Cor amarela */
}

.testimonial-card-3 .card-quote {
    background-color: #55337b; /* Cor roxa */
}

/* Responsividade */
@media (max-width: 992px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
    .card-image, .card-quote {
        min-width: 100%;
    }
    .card-quote {
        padding: 40px 20px;
    }
}

/* --- Estilos para a Seção Hero Night Summit --- */
.night-summit-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff4d4d; /* Cor avermelhada do fundo */
    color: #fff;
    padding: 80px 50px;
    gap: 50px;
}

.night-summit-content-left {
    max-width: 50%;
}

.night-summit-content-left h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}

.night-summit-content-left h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.night-summit-content-left p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-register-night {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-register-night:hover {
    background-color: #fff;
    color: #ff4d4d;
}

.night-summit-image-right {
    max-width: 50%;
}

.night-summit-image-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Responsividade */
@media (max-width: 992px) {
    .night-summit-hero {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }
    .night-summit-content-left,
    .night-summit-image-right {
        max-width: 100%;
    }
    .night-summit-content-left {
        margin-bottom: 30px;
    }
    .btn-register-night {
        width: 100%;
    }
}

/* --- Estilos para a Seção Food Summit --- */
.food-summit-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 80px 50px;
    gap: 50px;
}

.food-summit-content-left {
    flex: 1;
    max-width: 50%;
}

.food-summit-content-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
}

.food-summit-content-left p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.food-summit-content-left .schedule {
    margin-top: 20px;
}

.food-summit-content-left .schedule h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.food-summit-content-left .schedule p {
    margin: 0;
    font-size: 1rem;
}

.food-summit-image-right {
    flex: 1;
    max-width: 50%;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.food-summit-image-right img {
    width: 80%;
    height: auto;
    border-radius: 5px;
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .food-summit-section {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }
    .food-summit-content-left,
    .food-summit-image-right {
        max-width: 100%;
    }
    .food-summit-content-left {
        margin-bottom: 30px;
    }
    .food-summit-content-left h2,
    .food-summit-content-left .schedule h4 {
        text-align: center;
    }
    .food-summit-content-left p {
        text-align: left;
    }
}
@media (max-width: 768px) {
    .food-summit-content-left h2 {
        font-size: 2rem;
    }
}


/* --- Estilos para a Seção "Explore o estilo de vida do Rio" --- */
.night-summit-explore-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff5e5e; /* Cor do fundo */
    color: #fff;
    padding: 80px 50px;
    gap: 50px;
}

.night-summit-content-left {
    flex: 1;
    max-width: 50%;
}

.night-summit-content-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.night-summit-content-left p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.night-summit-content-left .schedule {
    margin-top: 20px;
}

.night-summit-content-left .schedule p {
    margin-bottom: 10px;
}

.night-summit-image-right {
    flex: 1;
    max-width: 50%;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.night-summit-image-right img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .night-summit-explore-section {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }
    .night-summit-content-left,
    .night-summit-image-right {
        max-width: 100%;
    }
    .night-summit-content-left {
        margin-bottom: 30px;
    }
    .night-summit-content-left .schedule {
        text-align: left;
    }
}
@media (max-width: 768px) {
    .night-summit-content-left h2 {
        font-size: 2rem;
    }
}

.partner-card img {
    width: 150px;      /* Aumenta a largura */
    height: auto;      /* Mantém proporção */
    max-width: 100%;   /* Garante que não ultrapasse o card */
    display: block;
    margin: 0 auto;    /* Centraliza a imagem */
}

.partner-card img {
    width: 180px;
    height: 100px;
    object-fit: contain; /* Evita distorção */
    display: block;
    margin: 0 auto;
}

/* --- Estilos para a Seção de Parceiros --- */
.partners-section {
    background-color: #f7f7f7;
    padding: 80px 50px;
    text-align: center;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
}

.partners-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

.partners-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.partners-filter input,
.partners-filter select {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.partners-filter input {
    width: 350px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
}

.partner-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-grow: 1;
}

.logo-box img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.partner-info {
    padding: 15px;
    text-align: center;
    color: #fff;
}

.partner-info.purple-bg {
    background-color: #922080;
}

.partner-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.partner-info p {
    font-size: 0.8rem;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .partners-section h1 {
        font-size: 2rem;
    }
    .partners-filter {
        flex-direction: column;
    }
    .partners-filter input,
    .partners-filter select {
        width: 100%;
    }
}


/* --- Estilos para a Seção Hero de Startups de Impacto --- */
.impact-startups-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e54b67; /* Cor de fundo Rosa */
    color: #fff;
    padding: 80px 50px;
    gap: 50px;
}

.hero-content-left {
    flex: 1;
    max-width: 50%;
    background-color: #e54b67; /* Cor de fundo Rosa */
}

.hero-content-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content-left p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.application-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.application-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.application-form input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    font-size: 1rem;
}

.privacy-note {
    font-size: 0.8rem;
    line-height: 1.4;
    opacity: 0.8;
}

.btn-submit {
    background-color: #fff;
    color: #f6a147;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #eee;
}

.hero-image-right {
    flex: 1;
    max-width: 50%;
}

.hero-image-right img {
    width: 60%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Responsividade */
@media (max-width: 992px) {
    .impact-startups-hero {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }
    .hero-content-left,
    .hero-image-right {
        max-width: 100%;
    }
    .hero-content-left {
        margin-bottom: 30px;
    }
}


/* --- Estilos para o menu de navegação --- */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
}

.logo img {
    height: 50px;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    list-style: none;
    min-width: 200px;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    white-space: nowrap;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-pre-register,
.btn-partner {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-pre-register {
    background-color: #fde74c;
    color: #000;
}

.btn-partner {
    background-color: #000;
    color: #fff;
}

.lang-selector {
    font-weight: 600;
    color: #888;
}

.lang-selector a {
    color: #000;
    text-decoration: none;
}

/* Esconde o menu hambúrguer por padrão em ecrãs grandes */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
}

/* --- Media Queries para Responsividade --- */
@media (max-width: 1024px) {
    .nav-container {
        padding: 10px 20px;
    }

    .nav-links,
    .nav-actions {
        display: none; /* Esconde o menu de links e ações */
    }
    
    .hamburger-menu {
        display: block; /* Mostra o botão hambúrguer */
    }

    .nav-links {
        position: absolute;
        top: 60px; /* Ajuste conforme a altura do seu header */
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        z-index: 99;
        flex-direction: column;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
        transform: translateX(-100%);
    }

    .nav-links.active {
        display: flex; /* Mostra o menu quando está ativo */
        transform: translateX(0);
    }
    
    .nav-links ul {
        flex-direction: column;
        text-align: left;
    }
    
    .nav-links ul li {
        width: 100%;
    }
    
    .dropdown:hover .dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        padding-left: 20px;
    }

    .nav-links .dropdown-menu {
        background-color: #f9f9f9;
    }
}


/* --- Estilos para a Seção Sobre nós --- */
.about-us-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.about-us-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .about-us-container {
        flex-direction: column;
        align-items: center;
    }
}

.about-us-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.about-us-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.about-us-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.about-us-image {
    flex: 1;
}

.about-us-image .main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.our-timeline {
    text-align: center;
    padding-top: 50px;
}

.timeline-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.timeline-image {
    width: 100%;
    height: auto;
    max-width: 1000px;
}




/* --- Estilos para a Seção Hero de Carreira --- */
.hero-careers {
    background-color: #00796b;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.hero-careers-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .hero-careers-container {
        flex-direction: column;
        text-align: center;
    }
}

.hero-text-content {
    flex: 1;
    text-align: left;
}

@media (max-width: 992px) {
    .hero-text-content {
        text-align: center;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-top: 30px;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.btn-careers {
    display: inline-block;
    background-color: #ff3366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-careers:hover {
    background-color: #e6004c;
}

.hero-image-content {
    flex: 1;
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Estilos para a Seção "What is Web Summit?" --- */
.what-is-websummit-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.what-is-websummit-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .what-is-websummit-container {
        flex-direction: column;
        align-items: center;
    }
}

.what-is-text-block {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.what-is-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.what-is-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.what-is-image-block {
    flex: 1;
    position: relative;
    padding: 20px;
}

.what-is-main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.shapes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
}

.shape-1 {
    top: 10%;
    left: 50%;
    width: 80px;
    height: auto;
}

.shape-2 {
    bottom: 10%;
    right: 5%;
    width: 60px;
    height: auto;
}

/* --- Estilos para a Seção de Benefícios --- */
.benefits-section {
    padding: 60px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: left;
}

.benefit-card img {
    width: 50px;
    height: auto;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}


/* Responsividade: em telas pequenas, alinhar em coluna */
@media (max-width: 992px) {
    .core-value-item, .core-value-item.reverse {
        flex-direction: column;
        text-align: center;
        margin-bottom: 50px;
    }
}

.core-value-text {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

@media (max-width: 992px) {
    .core-value-text {
        text-align: center;
    }
}

.core-value-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.core-value-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.core-value-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #f3f3f3;
}

.core-value-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


/* --- Estilos para a Seção "Nossos Valores" --- */
.core-values-section {
    padding: 80px 20px;
    background-color: #fcfcfc;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.core-values-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

.core-value-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

/* Para alternar a ordem dos blocos (imagem e texto) */
.core-value-item.reverse {
    flex-direction: row-reverse;
}

/* Responsividade: em telas pequenas, alinhar em coluna */
@media (max-width: 992px) {
    .core-value-item, .core-value-item.reverse {
        flex-direction: column;
        text-align: center;
        margin-bottom: 50px;
    }
}

.core-value-text {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

@media (max-width: 992px) {
    .core-value-text {
        text-align: center;
    }
}

.core-value-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.core-value-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.core-value-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.core-value-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Opcional: para suavizar as bordas das imagens */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

