@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

.main {
    background-image: url(../imgs/bg-web.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    gap: 20px;
}

#img-header-1{
    width: 250px;
    margin-left: 50%;
    transform: translateX(-50%);
}

.conteudo {
    display: flex;
    align-items: center;
    gap: 40px;
}

.conteudo img {
    width: 50%;
    height: auto;
}

.descricao {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.descricao .title {
    font-size: 30px;
    font-weight: 900;
    color: #222;
    line-height: 1.2;
}

.descricao p {
    font-weight: 500;
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
}

.descricao .stores {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.descricao .stores img {
    width: 150px;
}

/* Features Section */
.features {
    padding: 80px 0;
    width: 100%;
    background: #f8f9ff;
    margin-top: 50px;
}

.container {
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #222;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #fdbd1a, #ffb006);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

.banner {
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
}

.banner h2{
    color: #222;
}

.banner h2 span{
    color: #fff;
}

.duvida{
    display: flex;
    gap: 150px;
}

.btn{
    position: relative;
}

/* Plat btn */
.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #ba1f24;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fa183d;
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button:hover:after {
    background-color: darken(#fa183d, 10%);
}

.video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #fff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.80);
    opacity: 0;
    transition: all ease 500ms;
}

.video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
}

.video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
}

.video-overlay-close:hover {
    color: #fa183d;
}

.video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* width: 90%; */
    /* height: auto; */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

/* Tabelas de planos */
.background {
    padding: 0 25px 25px;
    position: relative;
    width: 100%;
    background: #f8f9ff;
}

@media (min-width: 900px) {
    .background {
        padding: 0 0 25px;
    }
}

.container-price {
    margin: 0 auto;
    padding: 50px 0 0;
    max-width: 960px;
    width: 100%;
    text-align: center;
}

.container-price span{
    color: #666;
    line-height: 1.8;
}

.panel {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 25px;
    position: relative;
    width: 100%;
    z-index: 10;
}

.pricing-table {
    box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08), 0px 20px 31px 3px rgba(0, 0, 0, 0.09), 0px 8px 20px 7px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

@media (min-width: 900px) {
    .pricing-table {
        flex-direction: row;
    }
}

.pricing-table * {
    text-align: center;
    text-transform: uppercase;
}

.pricing-plan {
    border-bottom: 1px solid #e1f1ff;
    padding: 25px;
}

.pricing-plan:last-child {
    border-bottom: none;
}

@media (min-width: 900px) {
    .pricing-plan {
        border-bottom: none;
        border-right: 1px solid #e1f1ff;
        flex-basis: 100%;
        padding: 25px 50px;
    }

    .pricing-plan:last-child {
        border-right: none;
    }
}

.pricing-img {
    margin-bottom: 25px;
    width: 50%;
}

.pricing-header {
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
}

.pricing-features {
    color: #feb80a;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 10px 0 25px;
}

.pricing-features-item {
    border-top: 1px solid #e1f1ff;
    font-size: 12px;
    line-height: 1.5;
    padding: 15px 0;
}

.pricing-features-item:last-child {
    border-bottom: 1px solid #e1f1ff;
}

.pricing-price {
    color: #feb80a;
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.pricing-button {
    border: 1px solid #f7ca6b;
    border-radius: 10px;
    color: #f1a500;
    display: inline-block;
    margin: 10px 0;
    padding: 15px 35px;
    text-decoration: none;
    transition: all 150ms ease-in-out;
}

.pricing-button:hover,
.pricing-button:focus {
    background-color: #f1e9d8;
}

.pricing-button.is-featured {
    background-color: #f1a500;
    color: #fff;
}

.pricing-button.is-featured:hover,
.pricing-button.is-featured:active {
    background-color: #f1a500;
}

/* Footer */
footer {
    width: 100%;
    background-color: #f8f9ff;
    padding-top: 50px;
    padding-bottom: 20px;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-1 .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-1 .chefita {
    width: 150px;
}

.footer-1 .capibara {
    width: 50px;
}

footer .footer-2,
footer .footer-3 {
    display: flex;
    flex-direction: column;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li:first-child {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    color: #feb80a;
}

/* Responsivo - Mobile */
@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .main {
        width: 100%;
        overflow-x: hidden;
    }
    .container {
        padding-right: 20px;
        padding-left: 20px;
        max-width: 100%;
    }

    .header {
        padding: 0;
        margin-left: -20px;
        justify-content: left;
        max-width: 85%;
    }
    #img-header-1{
    width: 250px;
    margin-left: 50%;
    transform: translateX(-50%);
    }
    .conteudo {
        flex-direction: column;
        width: 90%;
        justify-content: center;
        align-items: center;
    }
    .descricao{
        text-align: center;
    }

    .descricao .title{
        width: 300px;
    }

    #smartphone {
        width: 90%;
        margin-left: -100px;
    }

    .descricao .title {
        font-size: 30px;
        font-weight: 900;
        color: #222;
    }

    .descricao p {
        font-weight: 500;
        color: #fff;
        font-size: 18px;
        margin-top: 20px;
    }

    .descricao .stores {
        margin-top: 40px;
        display: flex;
        gap: 20px;
    }

    .descricao .stores img {
        width: 150px;
    }

    .features .container {
        width: 80%;
    }

    .banner{
        height: 200px;
        padding-bottom: 30px;
    }

    .duvida{
        flex-direction: column;
        gap: 50px;
    }

    .background {
        padding: 0;
    }

    .panel {
        width: 80%;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    footer .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer .footer-1 {
        justify-content: center;
    }

    footer .footer-2,
    footer .footer-3 {
        align-items: center;
        text-align: center;
    }
}