@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Open+Sans:wght@400;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #0A192F;
    /* Dark Navy */
    color: #E0E7FF;
    /* Light Bluish Gray */
    line-height: 1.7;
    padding: 20px;
    font-size: 16px;
}

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

h1,
h2,
h3 {
    font-family: 'Merriweather', serif;
    color: #FFFFFF;
    margin-bottom: 0.8em;
}

h1 {
    /* Hero title */
    font-size: 2.8em;
    text-align: center;
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2em;
    text-align: center;
    color: #A8B2D1;
    /* Lighter text for subtitle */
    margin-bottom: 3em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section {
    margin-bottom: 3.5em;
    padding: 2em;
    background-color: #102A4C;
    /* Slightly lighter navy for sections */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    /* Necessário para posicionar a imagem filha absolutamente */
    overflow: hidden;
    /* Para evitar que a imagem grande cause scrollbars se sair dos limites da seção visualmente */
}

.section:last-of-type {
    margin-bottom: 2em;
}

.section-title {
    font-size: 2em;
    margin-bottom: 1em;
    border-bottom: 2px solid #1E4A8B;
    /* Accent color for underline */
    padding-bottom: 0.3em;
    display: inline-block;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5em;
    position: relative;
    /* Para criar contexto de empilhamento */
    z-index: 1;
    /* Para ficar acima da imagem de fundo (z-index: 0) */
}

.feature-card {
    background-color: rgba(10, 25, 47, 0.85);
    /* Dark Navy com 85% de opacidade */
    padding: 1.5em;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-size: 1.3em;
    color: #64FFDA;
    /* Accent color for feature titles */
    margin-top: 0;
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
}

.feature-card h3 .icon {
    margin-right: 0.5em;
    font-size: 1.2em;
}

.feature-card p,
.feature-card ul {
    font-size: 0.95em;
    color: #C5D3E8;
    /* Lighter text for card content */
    margin-bottom: 0;
}

.feature-card ul {
    list-style-type: none;
    padding-left: 0;
}

.feature-card ul li {
    margin-bottom: 0.3em;
    padding-left: 1.2em;
    position: relative;
}

.feature-card ul li::before {
    content: '\2713';
    /* Checkmark */
    position: absolute;
    left: 0;
    color: #64FFDA;
    /* Accent color */
}

.section-background-svg {
    position: absolute;
    top: -280px;
    /* Posição ajustada pelo usuário */
    right: -320px;
    /* Posição ajustada pelo usuário */
    width: 800px;
    /* Tamanho ajustado pelo usuário */
    height: auto;
    z-index: 0;
    /* Atrás do conteúdo */
    filter: brightness(0) invert(1);
    /* Tenta tornar o SVG branco */
    pointer-events: none;
    /* Não interfere com cliques no conteúdo */
    opacity: 0.06;
}
.section-feature-background-svg {
    position: absolute;
    top: 0px;
    /* Posição ajustada pelo usuário */
    right: 0px;
    /* Posição ajustada pelo usuário */
    width: 900px;
    /* Tamanho ajustado pelo usuário */
    height: auto;
    z-index: 0;
    /* Atrás do conteúdo */
    filter: brightness(0) invert(1);
    /* Tenta tornar o SVG branco */
    pointer-events: none;
    /* Não interfere com cliques no conteúdo */
    opacity: 0.06;
}
.section-design-background-svg {
    position: absolute;
    top: -80px;
    /* Posição ajustada pelo usuário */
    right: -20px;
    /* Posição ajustada pelo usuário */
    width: 460px;
    /* Tamanho ajustado pelo usuário */
    height: auto;
    z-index: 0;
    /* Atrás do conteúdo */
    filter: brightness(0) invert(1);
    /* Tenta tornar o SVG branco */
    pointer-events: none;
    /* Não interfere com cliques no conteúdo */
    opacity: 0.06;
}
.section-testimonials-background-svg {
    position: absolute;
    top: -106px;
    /* Posição ajustada pelo usuário */
    right: -20px;
    /* Posição ajustada pelo usuário */
    width: 378px;
    /* Tamanho ajustado pelo usuário */
    height: auto;
    z-index: 0;
    /* Atrás do conteúdo */
    filter: brightness(0) invert(1);
    /* Tenta tornar o SVG branco */
    pointer-events: none;
    /* Não interfere com cliques no conteúdo */
    opacity: 0.06;
}
.feature-content-wrapper {
    display: flex;
    /* Ativa o layout flexível */
    align-items: center;
    /* Alinha os itens verticalmente ao centro */
    max-width: 1200px;
    /* Ou a largura máxima do seu container principal */
    width: 100%;
    margin: 0;
    /* Centraliza o wrapper se ele for menor que a largura total */
    padding: 0 20px;
    /* Espaçamento lateral, se necessário */
    position: relative;
    /* Garante contexto de empilhamento */
    z-index: 1;
    /* Garante que o conteúdo fique acima da imagem de fundo da seção */
}

.text-content p {
    margin-bottom: 1em;
    color: #C5D3E8;
}

.text-content p:last-child {
    margin-bottom: 0;
}

.quote {
    font-style: italic;
    font-size: 1.1em;
    color: #A8B2D1;
    margin: 1.5em 0;
    padding-left: 1.5em;
    border-left: 3px solid #5c8b1e;
}

.quote footer {
    text-align: left;
    font-style: normal;
    font-size: 0.9em;
    color: #aec450;
    margin-top: -0.8em;
    display: block;
}

.instagram-link {
    display: block;
    text-align: center;
    margin-top: 1em;
    font-size: 1.1em;
}

.instagram-link a {
    color: #64FFDA;
    text-decoration: none;
    font-weight: 600;
}

.instagram-link a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.4em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .section-title {
        font-size: 1.8em;
    }

    .feature-card h3 {
        font-size: 1.2em;
    }

    body {
        padding: 10px;
    }

    .container {
        margin: 10px auto;
    }

    .section {
        padding: 1.5em;
    }

    .section-background-svg {
        position: absolute;
        top: -210px;
        right: -250px;
        width: 600px;
    }
}

/* Styles for Creator Section */
.creator-grid {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.creator-text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.creator-image-column {
    flex: 1;
    background-color: #102A4C;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.creator-image {
    position: absolute;
    background-color: #0A192F;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    margin: 0;
}

/* Estilos para o Novo Cabeçalho com Imagem */
.site-header {
    /* Mantém os estilos existentes do header, se houver, ou adicione novos */
    /* Exemplo: padding, background-color, etc. */
    /* background-color: #0A192F; /* Cor de fundo do header original */
    /* padding: 40px 0; /* Padding original */
}

.header-content-wrapper {
    display: flex;
    /* Ativa o layout flexível */
    align-items: center;
    /* Alinha os itens verticalmente ao centro */
    justify-content: space-between;
    /* Espaço entre o texto e a imagem */
    gap: 30px;
    /* Espaçamento entre o texto e a imagem */
    max-width: 1200px;
    /* Ou a largura máxima do seu container principal */
    margin: 0 auto;
    /* Centraliza o wrapper se ele for menor que a largura total */
    padding: 0 20px;
    /* Espaçamento lateral, se necessário */
}

.header-text {
    flex: 1;
    /* Permite que o texto ocupe o espaço disponível */
    max-width: 60%;
    /* Limita a largura do texto para dar espaço à imagem */
}

.header-text h1 {
    /* Estilos existentes para h1, se necessário */
    /* font-size: 2.8em;
    margin-bottom: 15px; */
}

.header-text .hero-subtitle {
    /* Estilos existentes para .hero-subtitle, se necessário */
    /* color: #C5D3E8; */
    /* font-size: 1.2em; */
    /* line-height: 1.6; */
}

.header-image {
    flex-shrink: 0;
    /* Impede que a imagem encolha */
    max-width: 45%;
    /* Ajuste conforme o tamanho desejado para a imagem */
}

.header-image svg path {
    fill: white;
}

.header-image img {
    max-width: 100%;
    width: 400px;
    /* Removida a largura fixa */
    height: auto;
    /* Mantém a proporção da imagem */
    display: block;
    /* Remove espaço extra abaixo da imagem */
    border-radius: 8px;
    /* Opcional: para bordas arredondadas na imagem */
    filter: brightness(0) invert(1);
    /* Tenta tornar o SVG preto em branco */
}

/* Ajustes para telas menores (Responsividade) */
@media (max-width: 768px) {
    .header-content-wrapper {
        flex-direction: column;
        /* Empilha o texto e a imagem verticalmente */
        text-align: center;
        /* Centraliza o texto quando empilhado */
    }

    .header-text {
        max-width: 100%;
        /* O texto ocupa toda a largura */
        margin-bottom: 20px;
        /* Espaço entre o texto e a imagem */
    }

    .header-image {
        max-width: 70%;
        /* Ajuste o tamanho da imagem para telas menores */
        margin: 0 auto;
        /* Centraliza a imagem */
    }
}

/* Media query for Creator Section on smaller screens */
@media (max-width: 768px) {
    .creator-grid {
        gap: 0px;
        flex-direction: column;
    }

    .creator-image-column {
        order: -1;
        margin-bottom: 20px;
        min-height: 450px;
        background-color: #0A192F;
        /* Frame styles (padding, background, border-radius) from above still apply */
    }

    .creator-text-column {
        order: 0;
    }
}


@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1em;
    }

    .section-title {
        font-size: 1.6em;
    }

    .feature-card h3 {
        font-size: 1.1em;
    }

    .feature-card p,
    .feature-card ul {
        font-size: 0.9em;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
    footer {
        display: none !important;
        /* Nunca exibir header/footer em telas pequenas */
    }
}

/* Estilos para a Seção de Depoimentos */
.testimonials-section {
    background-color: #102A4C;
    /* Um fundo levemente diferente para a seção, se desejar */
    padding-top: 40px;
    padding-bottom: 60px;
}

.testimonials-section .section-title {
    text-align: center;
    margin-bottom: 10px;
}

.testimonials-section .section-subtitle {
    text-align: left;
    color: #C5D3E8;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #0A192F;
    border-radius: 10px;
    padding: 10px 25px 25px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Garante que o conteúdo se estique se os cards tiverem alturas diferentes */
}

.testimonial-card .quote {
    border: 0;
    font-size: 1em;
    color: #C5D3E8;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    /* Espaço para as aspas */
}

.testimonial-card .quote::before {
    content: '“';
    /* Aspas de abertura */
    font-size: 2.5em;
    /* Tamanho maior para as aspas */
    color: #007bff;
    /* Cor das aspas, ajuste conforme sua paleta */
    position: absolute;
    left: -5px;
    top: -10px;
    font-family: Georgia, serif;
}

.user-info {
    display: flex;
    align-items: center;
    margin-top: auto;
    /* Empurra para baixo se o card for mais alto */
    padding-top: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    /* Garante que a imagem cubra o espaço sem distorcer */
}

.user-info div p {
    margin: 0;
}

.user-name {
    font-weight: bold;
    color: #C5D3E8;
    font-size: 1.1em;
}

.user-title {
    font-size: 0.9em;
    color: #929cac;
}

.rating {
    text-align: right;
    margin-top: 10px;
    color: #f0ad4e;
    /* Cor das estrelas (amarelo/laranja) */
    font-size: 1.1em;
}

.rating span {
    margin-right: 2px;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        /* Uma coluna em telas menores */
        padding: 0 15px;
    }

    .testimonial-card .quote::before {
        font-size: 2em;
        top: -5px;
    }
}
footer {
    text-align: center;
    padding: 0.5rem;
    color: #666;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    flex-shrink: 0;
}