/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo-placeholder {
    color: #00c896;
    font-size: 24px;
    font-weight: bold;
    font-style: italic;
    width: 150px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #00c896;
}

/* Seção Hero */
.hero {
    margin-top: 110px;
    background-color: #1a1a1a;
    padding: 0px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: center;
    padding: 0px;
}

.hero-container {
    height: 100%;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    /*background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    /*border: 2px dashed #444;*/
}

.hero-video .video-placeholder {
    width: 100%;
    height: 400px;
    background-color: #000;
    overflow: hidden;
}


/* Seção Informações */
.informacoes {
    padding: 60px 0;
    text-align: center;
}

.main-title {
    color: #00c896;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
}

.subtitle {
    color: #333;
    font-size: 24px;
    margin-bottom: 30px;
}

.description {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    color: #666;
    line-height: 1.8;
}

.description p {
    margin-bottom: 20px;
}

/* Grid de Funcionalidades */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background-color: #00c896;
    padding: 50px 40px;
    border-radius: 10px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    color: #fff;
}

.icon-placeholder {
    padding: 10px;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: bold;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
}

/* Seção Outras Funções */
.outras-funcoes {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.outras-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.laptop-image .image-placeholder {
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);*/
    /*border-radius: 10px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    /*border: 2px dashed #ccc;*/
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
}

.funcoes-list h2 {
    color: #00c896;
    font-size: 28px;
    margin-bottom: 25px;
}

.funcoes-list ul {
    list-style: none;
}

.funcoes-list li {
    color: #666;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

/* Seção Benefícios */
.beneficios {
    padding: 80px 0;
    background-color: #fff;
}

.beneficios-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.beneficios-list h2 {
    color: #00c896;
    font-size: 28px;
    margin-bottom: 25px;
}

.beneficios-list ul {
    list-style: none;
}

.beneficios-list li {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.dashboard-image .image-placeholder {
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);*/
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    border: none;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
}

/* Seção Depoimentos */
.depoimentos {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.section-title {
    text-align: center;
    color: #00c896;
    font-size: 28px;
    margin-bottom: 50px;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.depoimento-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* Aspect ratio 16:9 */
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.label-tag {
    background-color: #c41230;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    display: inline-block;
    width: fit-content;
}

.label-name {
    background-color: #f4d03f;
    color: #333;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    display: inline-block;
    width: fit-content;
}

/* Seção Anuidade */
.anuidade {
    padding: 80px 0;
    /*background: linear-gradient(135deg, #1e5a73 0%, #2a7a9e 100%);*/
    color: #fff;
    text-align: center;
    background-image: url("/site/imgs/precos-bg.jpg");
    /*background-size: cover;*/
}

.anuidade .section-title {
    color: #fff;
}

.anuidade-text {
    font-size: 18px;
    margin-bottom: 15px;
}

.anuidade-phone {
    font-size: 20px;
    font-weight: bold;
}

/* Seção Contato */
.contato {
    padding: 80px 0;
    background-color: #fff;
}

.contato .section-title {
    margin-bottom: 50px;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contato-info {
    color: #666;
}

.contato-info p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #00c896;
    font-size: 16px;
}

.contact-item .icon {
    font-size: 24px;
}

.contact-item a {
    color: #00c896;
    text-decoration: none;
}

/* Formulário */
.contato-form {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00c896;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #00c896;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #00a87d;
}

/* Footer */
.footer {
    background-color: #00c896;
    padding: 40px 0;
    color: #fff;
    vertical-align: baseline;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.footer-logo-placeholder {
    color: #fff;
    font-size: 28px;
    text-align: right;
}

.footer-info {
    text-align: left;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.partner-placeholder {
    width: 200px;
    height: 80px;
    background-color: #c41230;
    margin-right: auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .outras-content,
    .beneficios-content,
    .contato-content {
        grid-template-columns: 1fr;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .partner-placeholder {
        margin: 20px auto 0;
    }
}

@media (max-width: 640px) {
    .main-title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contato-form {
        padding: 25px;
    }
}

/* Animações suaves */
.nav-link,
.btn-submit,
.form-group input {
    transition: all 0.3s ease;
}

/* Estados de foco para acessibilidade */
a:focus,
button:focus,
input:focus {
    outline: 2px solid #00c896;
    outline-offset: 2px;
}