/* Custom CSS para Ágil Cardápio */
:root {
    --primary-color: #FF6B35;  /* Laranja vibrante */
    --secondary-color: #8B4513;  /* Marrom saddlebrown */
    --accent-color: #D32F2F;  /* Vermelho intenso */
    --background-light: #FFF3E0;  /* Bege claro */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-light);
    color: var(--secondary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
}

.hero {
    background: linear-gradient(rgba(255, 107, 53, 0.8), rgba(139, 69, 19, 0.8)), 
                url('img/agil cardapio.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 200px 0;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero .lead {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-btn {
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

.navbar {
    background-color: #FFFFFF !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand {
    color: var(--secondary-color);
}

.nav-link {
    color: var(--secondary-color) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-brand img {
    filter: saturate(150%) hue-rotate(-20deg);
}

.card {
    background-color: white;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card-body {
    padding: 1.5rem;
}

.card .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.card .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.tutorial-section {
    background-color: var(--background-light);
    padding: 80px 0;
}

.tutorial-video-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tutorial-video-container:hover {
    transform: scale(1.02);
}

.tutorial-video {
    width: 100%;
    border-radius: 15px;
}

.tutorial-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.tutorial-text {
    color: var(--secondary-color);
}

.tutorial-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.tutorial-icon {
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 15px;
}

.video-promocional-section {
    background-color: var(--background-light);
    padding: 80px 0;
}

.video-promocional-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.video-promocional-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 900px;
    margin: 0 auto;
}

.video-promocional-container:hover {
    transform: scale(1.02);
}

.video-promocional-container video {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-promocional {
    width: 100%;
    border-radius: 15px;
}

.video-text {
    margin-top: 20px;
}

.video-text h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.video-beneficio {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background-color: rgba(0,0,0,0.03);
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-beneficio:hover {
    transform: translateY(-5px);
    background-color: rgba(0,0,0,0.05);
}

.video-beneficio i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.video-beneficio span {
    color: var(--secondary-color);
    font-weight: 600;
}

.video-text {
    color: var(--secondary-color);
}

.video-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.video-icon {
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 15px;
}

.video-promocional-section .row {
    display: flex;
    align-items: center;
}

.video-promocional-section .video-promocional-container,
.video-promocional-section img {
    max-height: 500px;
    width: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-promocional-section .video-promocional-container:hover,
.video-promocional-section img:hover {
    transform: scale(1.02);
}

.video-promocional-section .col-md-6:last-child {
    display: flex;
    align-items: flex-start;
    padding-top: 50px;
}

@media (max-width: 768px) {
    .video-promocional-content {
        flex-direction: column;
    }
    
    .video-text {
        margin-top: 20px;
        text-align: center;
    }
}

.servicos-section {
    background-color: var(--background-light);
    padding: 80px 0;
}

.servicos-section .col-md-4 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.servicos-section .col-md-4:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background-color: white;
}

.servicos-section i {
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.servicos-section .col-md-4:hover i {
    transform: scale(1.2);
}

.servicos-section h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.servicos-section p {
    color: rgba(0,0,0,0.7);
    line-height: 1.6;
}

.diferenciais-section {
    background-color: white;  /* Mudei para branco */
    padding: 80px 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.diferenciais-section .diferencial-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    padding: 10px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.diferenciais-section .diferencial-item:hover {
    background-color: rgba(255, 107, 53, 0.1);
}

.diferenciais-section .diferencial-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.5rem;
}

.diferenciais-section h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.diferenciais-section .diferenciais-imagem {
    max-width: 500px;
    transition: transform 0.3s ease;
}

.diferenciais-section .diferenciais-imagem:hover {
    transform: scale(1.05);
}

.vantagens-section {
    background-color: #FFF4CC;  /* Tom de amarelo mais forte */
    padding: 80px 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.vantagens-section .col-md-4 {
    background-color: white;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(33.333% - 30px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.1);  /* Sombra com tom amarelo */
}

.vantagens-section .col-md-4:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.vantagens-section i {
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    font-size: 3rem;
}

.vantagens-section .col-md-4:hover i {
    transform: scale(1.2);
}

.vantagens-section h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.vantagens-section p {
    color: rgba(0,0,0,0.7);
    line-height: 1.6;
}

.depoimentos-section {
    background-color: #F0F4F8;  /* Tom de azul claro acinzentado */
    padding: 80px 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.depoimentos-section .depoimento-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimentos-section .depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.depoimentos-section .depoimento-autor {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.depoimentos-section .depoimento-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.depoimentos-section .depoimento-nome {
    font-weight: bold;
    color: var(--secondary-color);
}

.depoimentos-section .depoimento-cargo {
    color: rgba(0,0,0,0.6);
    font-size: 0.9rem;
}

.depoimentos-section .depoimento-texto {
    color: rgba(0,0,0,0.7);
    line-height: 1.6;
    font-style: italic;
}

.funcionalidades-section {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.funcionalidades-section h2 {
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.funcionalidades-section .funcionalidade-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.funcionalidades-section .funcionalidade-item .icone {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.funcionalidades-section .funcionalidade-texto {
    flex-grow: 1;
    line-height: 1.6;
}

.funcionalidades-section .row {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .funcionalidades-section .funcionalidade-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .funcionalidades-section .funcionalidade-item .icone {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.funcionalidades-estabelecimento-section {
    background-color: #FFF4E6;  /* Tom de laranja bem claro */
    padding: 80px 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.funcionalidades-estabelecimento-section h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.funcionalidades-estabelecimento-section .funcionalidade-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.funcionalidades-estabelecimento-section .funcionalidade-item .icone {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.funcionalidades-estabelecimento-section .funcionalidade-texto {
    flex-grow: 1;
    line-height: 1.6;
}

.funcionalidades-estabelecimento-section .row {
    display: flex;
    flex-wrap: wrap;
}

.funcionalidades-estabelecimento-section .relatorios-item {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255,255,255,0.7);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .funcionalidades-estabelecimento-section .funcionalidade-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .funcionalidades-estabelecimento-section .funcionalidade-item .icone {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

#video .video-container, 
#video img {
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

#video .video-container:hover,
#video img:hover {
    transform: scale(1.02);
}

.hero-section {
    background-color: rgba(0,0,0,0.6);
    background-blend-mode: overlay;
    color: white;
    padding: 150px 0;
}

.hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.hero-section .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.hero-section .hero-cta {
    display: flex;
    align-items: center;
}

.hero-section .hero-mockup {
    max-width: 350px;
    transition: transform 0.3s ease;
}

.hero-section .hero-mockup:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 100px 0;
    }
    
    .hero-section .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section .hero-cta {
        justify-content: center;
    }
    
    .hero-section .hero-mockup {
        margin-top: 30px;
    }
}

.footer {
    background-color: #1a1a1a !important;
    color: #ffffff;
    padding: 50px 0;
}

.footer h5 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer .social-links a {
    color: #ffffff;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer .social-links a:hover {
    color: var(--primary-color);
}

.footer hr {
    border-color: rgba(255,255,255,0.1);
}
