@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: 14vh;
    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;
}

.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;
}

.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: 50px 0;
    z-index: 999;
    position: relative;
}

.cafeteira-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;
}

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

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

.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;
}

.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 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: #00238C;
    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;
}

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

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

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

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

.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;
}

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

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

.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/7.jpg');
    background-size: cover;
    background-position: center;
    padding: 35%;
}

/* 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/AI_Image2.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/32.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: #00238C;
    padding: 80px 0;
    text-align: center;
}

.final-container {
    max-width: 1000px;
    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: 0 auto;
}

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

    .cafeteira-container {
        width: 100%;
    }

    .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: 2vh;
    }

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

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

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

    .quickstart-section, 
    .moedor-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;
    }

    /* 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/7-mobile.jpg');
        min-height: 830px;
    }

    .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;
    }
}

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

    .absolute-image {
        width: 80px;
    }

    /* 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 */
    .cafeteira-title,
    .bebidas-title,
    .quickstart-title,
    .lattego-title,
    .moedor-title,
    .perfis-title,
    .final-title {
        font-size: 1.8em;
    }

    .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;
    }

    /* 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/7-mobile.jpg');
    }

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

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

    .recurso-info {
        width: 95%;
    }

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

    .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;
} 