@font-face {
    font-family: 'Frutiger';
    src: url('../fonts/FrutigerNeueLTW1G-Medium.woff') format('woff');
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Frutiger', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero {
    position: relative;
    min-height: 10vh;
    background-image: -webkit-linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/1.jpg');
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.absolute-image {
    position: absolute;
    top: 0;
    left:100px;
    width: 150px;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    animation: fadeIn 0.6s ease-out 0.2s forwards;
}

.inverted {
    position: absolute;
    top: auto;
    bottom: 0;
    left:100px;
    width: 200px;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    animation: fadeIn 0.6s ease-out 0.2s forwards;
}

.white {
    color:white;
}

.absolute-image.loaded {
    opacity: 1;
}

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

/* Header com logos */
.brand-header {
    background-color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-header img {
    height: 30px;
}

/* Hero Section */

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

.product-info {
    padding-left: 50px;
}

.product-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #f8a036;
    border-radius: 50%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.feature-text {
    flex: 1;
}

.flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.flex.column {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex.column.right {
    /* margin-top: 185px; */
}

.small-lines {
    font-size: 12px;
    color: #fff;
    max-width: 80vw;
    margin: 0 auto;
}

.coffee-woman {
    background-image: url('../images/8.jpg');
    min-height: 700px;
    background-size: cover;
    background-position: center;
    margin-top: -150px;
}

.feature-text strong {
    display: block;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.product-image {
    max-width: 100%;
    height: auto;
}

.warranty-badge {
    position: absolute;
    right: 20%;
    bottom: 20%;
    width: 100px;
    height: 100px;
}

/* Imagem de fundo estilizada */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.site-container {
    overflow: hidden;
}

/* Estilos do cabeçalho */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

/* Estilos principais */
main {
    min-height: 80vh;
    padding: 2rem 0;
}

/* Estilos do rodapé */
footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

/* Seção da Cafeteira */
.cafeteira-section {
    padding: 100px 0;
    z-index: 999;
    position: relative;
    background-color: #1c52a1;
}

.cafeteira-grande {
    margin-top: 50px;
    margin-bottom: -300px;
    width: 900px;
    transform: scale(1.3);
    margin-right: -50px;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    animation: fadeIn 0.6s ease-out 0.2s forwards;
}

.cafeteira-grande.loaded {
    opacity: 1;
}

.cafeteira-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    width: 960px;
}

.cafeteira-info {
    flex: 1;
}

.cafeteira-title {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 40px;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.icon-center {
    margin: 0px auto;
}

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

.feature-text p {
    margin: 0;
}

.cafeteira-image {
    flex: 1;
    text-align: right;
}

.cafeteira-image img {
    max-width: 100%;
    height: auto;
}

.nota-rodape {
    font-size: 0.8em;
    color: #666;
    margin-top: 10px;
}

/* Seção do Ferro */
.ferro-section {
    padding: 100px 0;
    z-index: 999;
    position: relative;
    background-color: #1c52a1;
}

.ferro-grande {
    margin-top: -300px;
    width: 800px;
    transform: scale(1.3);
    margin-right: -50px;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    animation: fadeIn 0.6s ease-out 0.2s forwards;
}

.ferro-grande.loaded {
    opacity: 1;
}

.ferro-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 860px;
}

.ferro-info {
    flex: 1;
}

.ferro-title {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 40px;
}

.ferro-image {
    flex: 1;
    text-align: right;
}

.ferro-image img {
    max-width: 100%;
    height: auto;
}

/* Seção de Bebidas */
.bebidas-section {
    display: flex;
    min-height: 500px;
}

.bebidas-image {
    background-image: url('../images/2.jpg');
    background-size: cover;
    background-position: center;
    width: 50vw;
}

.bebidas-content {
    background-color: #1c52a1;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50vw;
}

.bebidas-title {
    color: #FFA726;
    font-size: 2.8em;
    line-height: 1.2;
    margin-bottom: 30px;
}

.bebidas-subtitle {
    font-size: 1.4em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.bebidas-tipos {
    color: #FFA726;
    font-weight: bold;
}

/* Seção QuickStart */
.quickstart-section {
    display: flex;
    min-height: 500px;
}

.quickstart-content {
    background-color: #00238C;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50vw;
}

.quickstart-title {
    color: #FFA726;
    font-size: 2.8em;
    line-height: 1.2;
    margin-bottom: 30px;
}

.quickstart-text {
    font-size: 1.4em;
    line-height: 1.5;
}

.quickstart-highlight {
    color: #FFA726;
    font-weight: bold;
}

.quickstart-image {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-image: url('../images/3.jpg');
    background-size: cover;
    background-position: center;
    width: 50vw;

}

.quickstart-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-radius: 10px;
}

/* Seção Aroma */
.aroma-section {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

.aroma-title {
    color: #F8A036;
    font-size: 2.8em;
    line-height: 1.2;
    margin-bottom: 30px;
}

.aroma-description {
    font-size: 1.4em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.aroma-highlight {
    font-weight: bold;
}

.aroma-footnote {
    font-size: 0.8em;
    color: #666;
    max-width: 800px;
    margin: 20px auto 0;
    font-style: italic;
}

.cafe-grande-italiano {
    min-height: 650px;
    background-image: url('../images/4-1.jpg');
    background-size: cover;
    background-position: center;
}

/* Seção LatteGo */
.lattego-section {
    display: flex;
    min-height: 500px;
    flex-direction: row-reverse;
}
.higiene-section {
    display: flex;
    min-height: 500px;
    flex-direction: row-reverse;
}

h2.thin-font {
    font-weight: 00!important;
}

.lattego-image {
    width: 50vw;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-image: url('../images/6.jpg');
    background-size: cover;
    background-position: center;
}
.rodas-image {
    width: 50vw;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-image: url('../images/9.jpg');
    background-size: cover;
    background-position: center;
}

.higiene-image {
    width: 50vw;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-image: url('../images/8.jpg');
    background-size: cover;
    background-position: center;
}

.lattego-image img {
    max-width: 100%;
    height: auto;
}

.lattego-content {
    width: 50vw;
    background-color: #1c52a1;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lattego-title {
    color: white;
    font-size: 2em;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 300;
}

.lattego-text {
    font-size: 1.4em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.lattego-highlight {
    color: #FFA726;
    font-weight: bold;
}

.lattego-note {
    font-size: 1.2em;
    line-height: 1.5;
}

/* Seção Moedor */
.moedor-section {
    display: flex;
    min-height: 500px;
    flex-direction: row-reverse;
}
.rodas-section {
    display: flex;
    min-height: 500px;
    flex-direction: row-reverse;
}

.moedor-content {
    width: 50vw;
    background-color: #1c52a1;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.moedor-title {
    color: white;
    font-size: 2.5em;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 300;
}

.subs-moedor {
    font-size: 1.8em;
}

.moedor-text {
    font-size: 1.4em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.moedor-highlight {
    color: #FFA726;
    font-weight: bold;
}

.moedor-image {
    width: 50vw;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-image: url('../images/5.jpg');
    background-size: cover;
    background-position: center;
}

.moedor-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.secao-2-anos {
    background-image: url('../images/2.jpg');
    background-size: cover;
    background-position: center;
    padding: 35%;
}

.oven {
    background-image: url('../images/oven.jpg');
    padding: 10%;
    display: flex;
    justify-content:flex-start;
    min-height: 10vh;
}

/* Seção Perfis */
.perfis-section {
    display: flex;
    min-height: 500px;
}

.perfis-image {
    width: 50vw;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-image: url('../images/6.jpg');
    background-size: cover;
    background-position: center;
}

.perfis-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-radius: 10px;
}

.perfis-content {
    width: 50vw;
    background-color: #1E88E5;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.perfis-title {
    color: #FFA726;
    font-size: 2.8em;
    line-height: 1.2;
    margin-bottom: 30px;
}

.perfis-text {
    font-size: 1.4em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.perfis-highlight {
    color: #FFA726;
    font-weight: bold;
}

/* Seção Recursos Adicionais */
.recursos-section {
    padding: 80px 0;
    /* margin-top: -200px; */
}

.recursos-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
    padding: 0 20px;
}

.recurso-card {
    display: flex;
    flex-direction: column;
    position: relative;
}

.recurso-image {
    width: 90%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
    margin: 0 auto;
}

.recurso-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recurso-image.img-1 {
    background-image: url('../images/food2.jpg');
    background-size: cover;
    background-position: center;
}
.recurso-image.img-2 {
    background-image: url('../images/AI_Image3.jpg');
    background-size: cover;
    background-position: center;
}
.recurso-image.img-3 {
    background-image: url('../images/food.jpg');
    background-size: cover;
    background-position: center;
}
.recurso-image.img-4 {
    background-image: url('../images/AI_Image.jpg');
    background-size: cover;
    background-position: center;
}

.recurso-info {
    background-color: #1E88E5;
    color: white;
    padding: 30px;
    border-radius: 10px;
    min-height: 150px;
    display: flex;
    align-items: center;
    max-width:450px;
    margin: 0 auto;
    z-index: 1;
    margin-top: -10px;
}

.recurso-text {
    font-size: 1.2em;
    line-height: 1.5;
}

/* Seção Final */
.final-section {
    background-color: #1c52a1;
    padding: 80px 0 20px 0;
    text-align: center;
}

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

.final-title {
    color: white;
    font-size: 3.5em;
    line-height: 1.2;
    font-weight: bold;
    max-width: 800px;
    margin: 10px auto 50px auto;
}

/* Seção de Recursos do Ferro */
.recursos-ferro {
    padding: 320px 0px 80px 0px;
    background-color: #fff;
}

.recursos-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.recurso-item {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.recurso-icone {
    width: 150px;
    height: 150px;
    background-color: #1c52a1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.recurso-icone img {
    width: 100%;
    height: 100%;
    fill: white;
}

.recurso-texto h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 0px;
    font-weight: bold;
}

.recurso-texto p {
    color: #333;
    font-size: 1.1em;
    line-height: 1.4;
}
.recurso-texto h3 {
    color: #333;
    font-size: 2.5em;
    line-height: 1.4;
    font-weight: 300;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .cafeteira-container {
        width: 100%;
    }

    .recursos-ferro {
        padding: 180px 0px 80px 0px;
    }

    img.cafeteira-grande {
        margin-bottom: -200px;
    }



    .cafeteira-grande {
        width: 600px;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        margin-right: 0;
    }

    .final-title {
        font-size: 3em;
    }
}

@media screen and (max-width: 768px) {
    /* Ajustes gerais */
    .hero {
        min-height: 10vh;
    }

    .absolute-image {
        width: 100px;
        left: 20px;
    }

    /* Seções divididas */
    .bebidas-section,
    .lattego-section,
    .perfis-section,
    .higiene-section,    .rodas-sectio {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .flex.column.right {
        margin-top: 0px;
    }

    .quickstart-section, 
    .moedor-section,
    .rodas-section {
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .cafe-grande-italiano {
        min-height: 800px;
        background-image: url('../images/4-1-mobile.jpg');
    }

    .recursos-section,
    .flex {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .bebidas-image,
    .quickstart-image,
    .lattego-image,
    .moedor-image,
    .perfis-image,
    .bebidas-content,
    .quickstart-content,
    .lattego-content,
    .moedor-content,
    .perfis-content{
        width: 100%;
        min-height: 400px;
    }

    .higiene-image,
    .rodas-image {
        min-height: 500px;
        width: 100%;
    }

    /* Cafeteira section */
    .cafeteira-container {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }

    .cafeteira-grande {
        width: 100%;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin: 0;
    }

    .cafeteira-info {
        padding: 20px;

    }

    /* Recursos section */
    .recursos-container {
        grid-template-columns: 1fr;
    }

    .secao-2-anos {
        background-image: url('../images/pizza-mobile.jpg');
        min-height: 830px;
        background-position: left;
    }

    .secao-2-anos.oven {
        background-image: url('../images/oven-mobile.jpg');
        background-position: center;
    }


    .recurso-image {
        width: 100%;
        height: 300px;
    }

    .recurso-info {
        width: 90%;
    }

    /* Textos */
    .bebidas-title,
    .quickstart-title,
    .lattego-title,
    .moedor-title,
    .perfis-title,
    .final-title {
        font-size: 2.2em;
    }

    .bebidas-subtitle,
    .quickstart-text,
    .lattego-text,
    .moedor-text,
    .perfis-text {
        font-size: 1.2em;
    }

    .recursos-grid {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .recurso-item {
        max-width: 100%;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 480px) {
    /* Ajustes gerais */
    .hero {
        min-height: 10vh;
    }

    .absolute-image {
        width: 80px;
    }

    .recursos-ferro {
        padding: 120px 0px 80px 0px;
    }

    .cafeteira-section {
        padding: 20px 0px;
    }

    img.cafeteira-grande {
        margin-bottom: -110px;
    }

    /* Seções de imagem */
    .bebidas-image,
    .quickstart-image,
    .lattego-image,
    .moedor-image,
    .perfis-image {
        min-height: 300px;
    }

    /* Conteúdo */
    .bebidas-content,
    .quickstart-content,
    .lattego-content,
    .moedor-content,
    .perfis-content {
        padding: 30px 20px;
    }

    /* Títulos e textos */
    .bebidas-title,
    .quickstart-title,
    .lattego-title,
    .moedor-title,
    .perfis-title,
    .final-title {
        font-size: 1.8em;
    }

    .cafeteira-title {
        font-size: 1.2em;
        text-align: center;
    }

    .feature-item {
        gap: 10px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon img {
        width: 20px;
        height: 20px;
    }

    .feature-text strong {
        font-size: 1em;
    }

    .feature-text p {
        font-size: 0.9em;
    }

    .secao-2-anos.tabua-2 {
        background-image: url('../images/14-mobile.jpg');
        min-height: 100vh;
        padding-top:40px;
    }

    /* Seções especiais */
    .cafe-grande-italiano {
        min-height: 400px;
        background-image: url('../images/4-1-mobile.jpg');
    }

    .secao-2-anos {
        min-height: 600px;
        background-image: url('../images/2.jpg');
    }

    .coffee-woman {
        min-height: 400px;
        margin-top: -100px;
    }

    /* Recursos */
    .recurso-image {
        height: 250px;
    }

    .recurso-info {
        width: 95%;
    }

    .recurso-text {
        font-size: 1em;
    }

    .recurso-texto h3 {
        font-size: 1.5em;
    }


    .recursos-section {
        /* margin-top: -100px; */
    }

    /* Espaçamentos */
    .aroma-section,
    .recursos-section,
    .final-section {
        padding: 40px 0;
    }
}

/* Suporte para navegadores mais antigos */
@supports not (display: flex) {
    .flex {
        display: block;
    }
    
    .flex.column {
        display: block;
    }
    
    .flex-item {
        display: block;
        margin-bottom: 20px;
    }
}

/* Suporte para navegadores que não suportam gap */
@supports not (gap: 16px) {
    .flex {
        margin: -8px;
    }
    
    .flex > * {
        margin: 8px;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.fade-in {
    opacity: 1;
}

/* Loading States */
.loading {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.loaded {
    opacity: 1;
}

/* Removendo loading de imagens específicas */
.absolute-image,
.cafeteira-grande {
    transition: opacity 0.6s ease-out;
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Otimizações de Performance */
.optimize-rendering {
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

/* Form Focus */
.form-focus:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Removendo scroll suave */
html {
    scroll-behavior: auto;
}

/* Removendo margens de scroll */
.section-scroll {
    scroll-margin-top: 0;
    scroll-behavior: auto;
}

/* Ajustando imagens */
.cafeteira-grande,
.recurso-image img {
    max-width: 100%;
    height: auto;
    display: block;
} 

p.subs {
    font-size: 18px!important;
    color: #000;
}

/* Seção de Imagem */
.imagem-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: -100px 0;
    z-index: 1;
}

.vista-flex {
    display: flex;
    padding: 280px 0px 0px 0px;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.imagem-content {
    width: 100%;
    height: auto;
    position: relative;
}

.imagem-full {
    width: 110%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media screen and (max-width: 768px) {
    .imagem-section {
        margin: -50px 0;
    }
    
    .imagem-content {
        height: 60vh;
    }
}

@media screen and (max-width: 480px) {
    .imagem-content {
        height: 40vh;
    }
}

/* Seção da Tábua */
.tabua-section {
    padding: 80px 0;
    background-color: #fff;
}

.tabua-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.tabua-texto {
    flex: 2;
    max-width: 800px;
}

strong {
    font-weight: 700;
}

.tabua-texto h2 {
    font-size: 2.2em;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
    font-weight: 300;
}

.tabua-texto p {
    font-size: 1.8em;
    line-height: 1.4;
    color: #666;
}

.tabua-icone {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}


.circulo-azul {
    width: 200px;
    height: 200px;
    background-color: #1c52a1;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.angulo {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    color: #FFA726;
    font-size: 2em;
    font-weight: bold;
}

.icone-ajuste {
    position: relative;
    width: 100px;
    height: 100px;
}

.linha-vertical {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #fff;
    transform: translateX(-50%);
}

.linha-horizontal {
    position: absolute;
    top: 70%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
}

.seta-circular {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 30px;
    height: 30px;
    border-right: 4px solid #FFA726;
    border-top: 4px solid #FFA726;
    transform: rotate(45deg);
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .tabua-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .tabua-texto h2 {
        font-size: 2.2em;
    }

    .tabua-texto p {
        font-size: 1.4em;
    }

    .circulo-azul {
        width: 150px;
        height: 150px;
    }

    .angulo {
        font-size: 1.6em;
    }
}

@media screen and (max-width: 480px) {
    .tabua-texto h2 {
        font-size: 1.8em;
    }

    .tabua-texto p {
        font-size: 1.2em;
    }

    .circulo-azul {
        width: 120px;
        height: 120px;
    }

    .angulo {
        font-size: 1.4em;
        right: 20px;
    }
    .moedor-title {
        margin-bottom: 10px;
    }
}

/* Seção App Home ID */
.app-section {
    /* padding: 80px 0; */
    background-color: #fff;
    overflow: hidden;
}

.app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.app-info {
    flex: 1;
    padding: 10% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    /* margin-right: -200px; */
}

.app-logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.no-padding {
    padding: 0px;
}

.aviso  {
    max-width: 300px;
    margin-bottom: 30px;
}

.app-title {
    color: #1c52a1;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.app-subtitle {
    font-size: 2em;
    line-height: 1.3;
    color: #1c52a1;
    margin-bottom: 30px;
    font-weight: 600;
}

.app-stores {
    display: flex;
    gap: 20px;
}

.store-button {
    display: block;
    transition: transform 0.3s ease;
}

.store-button:hover {
    transform: translateY(-5px);
}

.store-button img {
    height: 40px;
    width: auto;
}

.app-mockup {
    flex: 1;
    position: relative;
}

.mockup-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    .app-content {
        flex-direction: column;
        text-align: center;
    }

    .app-info {
        max-width: 100%;
    }

    .app-stores {
        justify-content: center;
    }

    .app-mockup {
        width: 100%;
    }

    .mockup-image {
        margin: 0 auto;
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .app-title {
        font-size: 2em;
    }

    .app-subtitle {
        font-size: 1.6em;
    }

    .store-button img {
        height: 35px;
    }
}

@media screen and (max-width: 768px) {
    .vista-flex {
        flex-direction: column;
        padding: 180px 20px 120px 20px;
    }

    .vista-flex .imagem-content {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .vista-flex .flex-item {
        width: 100%;
        padding: 0 20px;
    }

    .vista-flex .icon-center {
        width: 200px;
        margin-bottom: 20px;
    }

    .vista-flex .tabua-texto h2 {
        font-size: 1.8em;
    }

    .vista-flex .subs {
        font-size: 16px!important;
    }
}

@media screen and (max-width: 480px) {
    .vista-flex {
        padding: 120px 0px 120px 0px;
    }

    .vista-flex .icon-center {
        width: 150px;
    }

    .vista-flex .tabua-texto h2 {
        font-size: 1.5em;
    }

    .vista-flex .subs {
        font-size: 14px!important;
    }
} 