/* Estilos Gerais */

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #142032; /* Texto padrão em preto */
    line-height: 1.6;
}

/* Header */
header {
    background-color: #fff; /* Fundo branco */
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: solid 1px #ff809e;
}

header .container {
  display:flex;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 150px; /* Limita a largura do logo */
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: #142032; /* Texto preto para links */
    font-weight: 600;
}

h1{
    font-size: 2rem;
}

p{
    font-size: 0.9rem;
}

/* Hero Section */

.hero {
    background-color: #fff3f6; /* Rosa */
    color: white;
    padding: 60px 20px;
    display: flex; /* Flexbox para alinhamento */
    justify-content: center;
    background-image: url(https://imediatadesign.vtexassets.com/assets/vtex.file-manager-graphql/images/8983a80f-e630-4781-8ce5-4ff2e503207b___8ceaf8421447fe78d9b7059b955097be.svg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.fab{
    font-size: 16px;
    color: #ff809e;
    background: #ffff;
    padding: 9px;
    border-radius: 100px;
    margin-right: 10px;
}

.social-link{
    display: contents;
}

.hero .cta-btn{
    background: #ff809e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px 0px 20px 0px;
    font-size: 0.9rem;
    display: inline-block;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Limitar largura */
    margin: auto;
    color: #142032;
}

.left-column-hero {
    flex: 1; /* Para preencher o espaço */
    padding-right: 20px; /* Espaço entre colunas */
}

.right-column-hero {
    flex: 1; /* Para preencher o espaço */
    text-align: center; /* Centraliza imagem */
}

.hero img {
    max-width: 100%; /* Responsividade */
    height: auto;
    border-radius: 10px; /* Bordas arredondadas */
    max-height: 500px;
}

/* Seções */

h2 {
    color: #f71964; /* Rosa para subtítulos */
    text-align: center;
    font-size: 1.8rem;
}

.benefits, .services, .portfolio {
    padding: 40px 20px;
}

.services{
    background-color: #fff3f6;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    background-image: url(https://imediatadesign.vtexassets.com/assets/vtex.file-manager-graphql/images/8983a80f-e630-4781-8ce5-4ff2e503207b___8ceaf84….svg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.service:hover{
    transform: scale(1.1);
}

.service{
    background: #fff;
    max-width: 350px;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    
}
.service p{
   font-size: 0.75rem;
}

.service h3{
    font-size: 1rem;
 }

.benefits-container, .services-container, .portfolio-container {
    display: flex;
    justify-content: center;
    max-width: 1200px; /* Limitar largura */
    margin: auto;
}

.benefit, .service {
    flex: 1 1 30%; /* Flexível para três colunas */
    text-align: center;
    margin: 20px;
    padding-top:20px;
}

.benefit img, .service img {
    max-width: 100%; /* Responsividade */
    height: auto;
    border-radius: 10px; /* Bordas arredondadas */
}

/* Portfolio */

.portfolio .cta-btn{
    background: #ff809e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    display: inline-block;
}

.portfolio{
    background-image: url(https://imediatadesign.vtexassets.com/assets/vtex.file-manager-graphql/images/cf0a184b-566b-4d52-9533-d2f305a928fa___b9d6fae%E2%80%A6.webp);
    background-repeat: no-repeat;
    background-size: 900px;
    background-position: 50%;
    background-attachment: fixed;
    justify-content: center;
    display: flex;
}
.portfolio-container img {
    max-width: 400px; /* Limita largura das imagens do portfólio */
    margin: 10px;
    border-radius: 10px; /* Bordas arredondadas */
}

/* Depoimento */

.depoimentos-section h2{
    margin-bottom: 20px;
}

.depoimentos-section{
    background: #f8f7fc;
    padding: 30px 0px;
    border-radius: 10px;
}

.depoimentos-logo img {
    max-width: 150px !important;
    max-height: 70px !important;
    margin-bottom: 10px;
}

.depoimentos-logo{
    min-height: 100px;
}

.depoimentos-container{
    display: flex;
    flex-direction: row;
}

.depoimentos-text{
    padding: 30px;
    background: #fff;
    margin: 10px;
}

/* Methodology */

.methodology-section{
    background: #fff3f6;
    padding: 30px 0px;
}

.methodology-container img{
    width: 100%;
    margin-top: 30px;
}

/* Contato */

.contato-section{
    background: #ff809e;
    padding: 30px;
}

.contato-section p{
    color: #fff;
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0px;
}

.contato-section .cta-btn{
    background: #142032;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 15px 0px 0px 0px;
    font-size: 0.9rem;
    display: inline-block;
    text-decoration: none;
}


/* Footer */

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #f8f8f8; /* Fundo claro */
}


@media (max-width: 768px) {

/* Geral */

h1{
    font-size: 1.6rem;
}

h2{
    font-size: 1.5rem;
}

/* Portfolio */

.portfolio-container{
    flex-direction: column;
}

.portfolio{
    background-image: url(https://imediatadesign.vtexassets.com/assets/vtex.file-manager-graphql/images/b3ecdad8-b0a8-481c-988c-8227c1a81496___20f122f223c126a5e5a2e8f999dd0c69.svg);
    background-size: contain;
}

/* Depoimentos */

.depoimentos-container {
    display: flex;
    flex-direction: column;
}

/* Contato */

.contato-section p{
    text-align: center;
    font-size: 1.2rem;
}

.contato-button{
    justify-content: center;
    display: flex;
}


/* Hero */

header .container{
    justify-content: center;
}

.hero .cta-btn{
    margin: 10px 0px 40px 0px;
}

.hero{
    padding: 20px;
}

.hero-content {
    flex-direction: column; /* Coloca as colunas em vertical */
    text-align: center; /* Centraliza texto */
}

.left-column-hero, .right-column-hero {
    padding-right: 0; /* Remove espaçamento */
}

.benefits-container, .services-container {
    flex-direction: column; /* Coloca as colunas em vertical */
    align-items: center; /* Centraliza elementos */
}

.services{
background: #fff3f6;
}
}