* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background: #f4f4f4;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
}

header {
    background: #ffffff;
    color: #333333;
    padding: 12px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo img {
    height: 64px;
    width: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-name-main {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
}

.site-name-sub {
    font-size: 12px;
    font-weight: 400;
    color: #777777;
}

.main-menu {
    display: flex;
    gap: 8px;
}

.menu-item {
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover {
    background: #f0f7ff;
    color: #007acc;
    transform: translateY(-1px);
}

.menu-item.active {
    background: #007acc;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 122, 204, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 850px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 20px;
        gap: 10px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .main-menu.open {
        right: 0;
    }

    .menu-item {
        width: 100%;
        padding: 12px 20px;
        border-radius: 8px;
    }

    /* Animação do ícone hambúrguer */
    .mobile-menu-toggle.open span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 5px);
    }
    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.open span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -5px);
    }
    
    .logo img {
        height: 48px;
    }
    
    .site-name-main {
        font-size: 18px;
    }
    
    .site-name-sub {
        font-size: 10px;
    }
}

main {
    padding-bottom: 24px;
}

.banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    height: 600px;
    padding: 0;
    margin-bottom: 32px;
}

.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.banner-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 960px;
    height: 100%;
}

.banner-main {
    max-width: 520px;
}

.banner-title {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.banner-word-wrapper {
    font-size: 38px;
    font-weight: 700;
    min-height: 46px;
    margin-bottom: 22px;
}

.banner-word {
    display: inline-block;
    color: #ffffff;
}

.banner-word::after {
    content: "|";
    display: inline-block;
    margin-left: 4px;
    animation: cursorBlink 0.8s step-start infinite;
}

@keyframes cursorBlink {
    50% {
        opacity: 0;
    }
}

.banner-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.about-home {
    background: #007acc;
    color: #ffffff;
    padding: 56px 0;
    margin-bottom: 32px;
}

.about-home-inner {
    max-width: 720px;
}

.about-home h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.about-home p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.button-light {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 20px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
}

.button-light:hover {
    background: #ffffff;
    color: #007acc;
}

.button-primary {
    display: inline-block;
    padding: 10px 20px;
    background: #e53935;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.button-primary:hover {
    background: #c62828;
}

.highlight {
    background: #fff;
    padding: 20px 24px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.highlight h3 {
    margin-bottom: 12px;
}

.highlight ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.highlight li {
    margin-bottom: 4px;
}

.info-data {
    font-size: 13px;
    color: #555;
}

.partners-strip {
    background: #f5f5f5;
    padding: 16px 0;
}

.partners-strip-inner {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.partner-logo-item {
    flex: 1;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
    border-radius: 4px;
    background: #ffffff;
}

.partner-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.testimonials {
    background: #ffffff;
    padding: 32px 0 40px;
}

.testimonials-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
    gap: 24px;
    align-items: flex-start;
}

.testimonials-text h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.testimonials-text p {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.button-secondary {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 20px;
    border: 1px solid #e53935;
    color: #e53935;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.button-secondary:hover {
    background: #e53935;
    color: #ffffff;
}

.testimonials-cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 10px 10px 14px;
    font-size: 13px;
}

.testimonial-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.testimonial-hidden {
    display: none;
}

.testimonials-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #dddddd;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #555555;
}

.testimonials-arrow.prev {
    left: -14px;
}

.testimonials-arrow.next {
    right: -14px;
}

.testimonial-card h4 {
    font-size: 14px;
    margin: 8px 0 6px;
}

.testimonial-image {
    width: 100%;
    height: 160px;
    border-radius: 3px;
    margin-bottom: 6px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-image {
    background: #ececec;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.partners-list {
    padding: 24px 0 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.partner-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.partner-card {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.partner-card-image {
    width: 100%;
    height: 340px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.partner-card-body {
    padding: 12px 14px 14px;
    font-size: 14px;
}

.partner-card-body h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.features {
    background: #ffffff;
    padding: 32px 0 40px;
}

.features-header h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.features-header p {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.founders-section {
    background: #ffffff;
    padding: 32px 0 40px;
}

.founders-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    max-width: 940px;
    margin: 0 auto;
}

.founder-card {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
    padding: 16px;
}

.founder-image {
    width: 100%;
    max-width: 220px;
    height: 220px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-body {
    font-size: 14px;
}

.founder-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #e53935;
    margin-bottom: 4px;
}

.founder-name {
    font-size: 18px;
    margin-bottom: 4px;
}

.founder-role {
    font-size: 13px;
    color: #555;
}

.founder-bio {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
    line-height: 1.5;
}

.feature-card {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

.feature-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 8px;
}

.feature-card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.feature-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #1976d2;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
}

.feature-card-body {
    padding: 10px 12px 14px;
}

.feature-card-body h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.videos-home {
    background: #ffffff;
    padding: 32px 0 40px;
}

.news-home {
    background: #ffffff;
    padding: 32px 0 40px;
}

.news-header h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.news-header p {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.news-card {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    padding: 14px 14px 16px;
    font-size: 13px;
}

.news-card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 10px;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.news-date {
    font-size: 12px;
    color: #777;
    margin-bottom: 6px;
}

.news-summary {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
}

.news-link {
    display: inline-block;
    font-size: 13px;
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
}

.news-link:hover {
    text-decoration: underline;
}

.news-empty {
    font-size: 14px;
    color: #777;
}

.news-page .news-grid {
    grid-template-columns: minmax(0, 1fr);
}

.news-page .news-card {
    max-width: 780px;
    margin: 0 auto 24px;
}

.news-page .news-card-image {
    height: 260px;
    border-radius: 4px;
}

.news-page .news-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.news-page .news-summary {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
}

.videos-header h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.videos-header p {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.videos-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.video-card {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    flex: 1 1 calc(33.333% - 16px);
    min-width: 260px;
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-frame .video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.video-link-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #ffffff;
    background: #000000;
}

.lead-panel {
    background: #ffffff;
    color: #333333;
    padding: 14px;
    border-radius: 6px;
    max-width: 360px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.lead-panel h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.lead-form .field {
    margin-bottom: 8px;
}

.lead-form input[type="text"],
.lead-form input[type="email"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.lead-success {
    background: #e6f4ea;
    color: #0f5132;
    border: 1px solid #b7e1c0;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 10px;
}

.lead-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.video-card-body {
    padding: 10px 12px 14px;
}

.video-card-body h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.videos-empty {
    font-size: 14px;
    color: #777;
}

.image-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.image-modal-inner {
    max-width: 90%;
    max-height: 90%;
}

.image-modal-inner img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

/* Modal de Teste */
.trial-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.trial-modal-inner {
    background: #fff;
    max-width: 420px;
    width: 92%;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.trial-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.trial-close {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.trial-field {
    margin-bottom: 12px;
}

.trial-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.trial-message {
    margin-bottom: 10px;
    font-size: 14px;
    padding: 10px;
    border-radius: 6px;
}

footer {
    text-align: center;
    padding: 16px;
    color: #777;
    font-size: 14px;
}
