/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background-color: #000000;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: none; /* Removendo transição para evitar mudança de cor */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFC107;
}

.nav-cta {
    background-color: #FFC107;
    color: #181818;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: #FF8F00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: url('bg-secao1.jpg') no-repeat center center/cover;
    position: relative;
    color: #FFFFFF;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 4.5rem; /* Aumentado para corresponder ao modelo */
    font-weight: 700;
    line-height: 1.1; /* Ajustado para espaçamento entre linhas */
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.highlight {
    color: #FFC107;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #FFC107;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #FFC107;
    color: #181818;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
}

.cta-button:hover {
    background-color: #FF8F00;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.4);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #181818;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #181818;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666666;
    line-height: 1.6;
}

/* Territory Section */
.territory {
    padding: 80px 0;
    background: white;
}

.territory-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.territory-description p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
}

.territory-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Solution Section */
.solution {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #181818;
    margin-bottom: 1.5rem;
}

.solution-card ul {
    list-style: none;
}

.solution-card li {
    padding: 0.75rem 0;
    color: #444444;
    position: relative;
    padding-left: 1.5rem;
}

.solution-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFC107;
    font-weight: bold;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: #FEB900;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Botão específico da seção final-cta */
.final-cta .cta-button {
    background-color: #000000;
    color: #FFFFFF;
}

.final-cta .cta-button:hover {
    background-color: #1C1C1C;
    color: #FFFFFF;
}

/* Footer */
.footer {
    background-color: #0f0f0f;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-text {
    opacity: 0.8;
}

.footer-website {
    color: #FFC107;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #000000;
        flex-direction: column;
        padding: 2rem;
        z-index: 1002;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav.active {
        display: flex;
    }

    .nav-link,
    .nav-cta {
        padding: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
    }
    
    .territory-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .solution-cards {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        min-width: auto;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 3.5rem !important;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}



.hero-title, .hero-subtitle {
    color: #FFFFFF;
}

.hero-title .highlight {
    color: #FFC107;
}

.hero-title .highlight::after {
    background-color: #FFC107;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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




/* Scroll to Top Button */
#scrollToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 30px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 1000; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #FFC107; /* Set a background color */
    color: #181818; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

#scrollToTopBtn:hover {
    background-color: #FF8F00; /* Add a darker background on hover */
    transform: translateY(-3px);
}




/* AI Agents Section */
.ai-agents {
    padding: 80px 0;
    background-color: #181818;
    color: #FFFFFF;
}

.ai-agents .section-title {
    color: #FFFFFF;
}

.ai-agents .section-subtitle {
    color: #FFFFFF;
}

.ai-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ai-content p {
    margin-bottom: 1.5rem;
}

.ai-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.ai-agents h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.ai-features {
    list-style: none;
    text-align: left;
    margin-bottom: 3rem;
}

.ai-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #FFFFFF;
}

.ai-features li strong {
    color: #FFFFFF;
}

.ai-features li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #FFFFFF;
    font-weight: bold;
}

.ai-final-text {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.ai-call-to-action {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

/* Botão específico da seção AI Agents */
.ai-agents .cta-button {
    background-color: #16C60C;
    color: #FFFFFF;
}

.ai-agents .cta-button:hover {
    background-color: #12990B;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .ai-content {
        text-align: center;
    }
    
    .ai-features {
        text-align: center;
    }
    
    .ai-features li {
        text-align: center;
        padding-left: 0;
    }
    
    .ai-features li::before {
        display: none;
    }
    
    /* Centralizar texto da seção "O que é o MarkeLocal" no mobile */
    .about .about-text {
        text-align: center;
    }
    
    .about .about-text p {
        text-align: center;
    }
}




/* AI Hero Section */
.ai-hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('ia.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.ai-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-hero .hero-text {
    text-align: left;
}

.hero-title-ai {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.hero-subtitle-ai {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-text-ai {
    font-size: 1.125rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.ai-highlight-hero {
    font-size: 1.125rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 600;
}

.ai-cta-button {
    background: #16C60C;
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.ai-cta-button:hover {
    background: #12990B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 198, 12, 0.3);
}

/* AI Agents Details Section */
.ai-agents-details {
    padding: 80px 0;
    background: #FFFFFF;
}

.ai-agents-details .section-title {
    color: #181818;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.ai-agents-details .ai-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.ai-agents-details .ai-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem auto;
    text-align: left;
    max-width: 800px;
}

.ai-agents-details .ai-features li {
    margin-bottom: 2rem;
    color: #333333;
    line-height: 1.6;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1rem;
}

.ai-agents-details .ai-features li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

.ai-agents-details .ai-features li strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #181818;
    font-weight: 600;
    font-size: 1.1rem;
}

.ai-agents-details .ai-final-text {
    color: #333333;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

.ai-agents-details .ai-call-to-action {
    color: #181818;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* Mobile Responsiveness for AI Hero */
@media (max-width: 768px) {
    .ai-hero {
        min-height: 80vh;
        background-attachment: scroll;
        padding: 20px 0;
    }
    
    .ai-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .ai-hero .hero-text {
        padding: 0 20px;
    }
    
    .hero-title-ai {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle-ai,
    .hero-text-ai,
    .ai-highlight-hero {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    
    .ai-cta-button {
        font-size: 1rem;
        padding: 12px 24px;
        margin-top: 20px;
    }
    
    /* AI Agents Details Mobile */
    .ai-agents-details {
        padding: 60px 0;
    }
    
    .ai-agents-details .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 20px;
    }
    
    .ai-agents-details .ai-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .ai-agents-details .ai-features {
        text-align: left;
        margin: 0 auto 2rem auto;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .ai-agents-details .ai-features li {
        margin-bottom: 1.5rem;
        padding-left: 2rem;
        font-size: 1rem; /* Alterado de 0.95rem para 1rem */
        position: relative;
    }
    
    .ai-agents-details .ai-features li::before {
        content: "✅";
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.2rem;
        line-height: 1.2;
        display: block;
    }
    
    .ai-agents-details .ai-features li strong {
        font-size: 1.1rem; /* Alterado de 1rem para 1.1rem */
    }
    
    .ai-agents-details .ai-final-text {
        padding: 0 20px;
        font-size: 1.125rem; /* Alterado de 1rem para 1.125rem */
    }
    
    .ai-agents-details .ai-call-to-action {
        padding: 0 20px;
        font-size: 1.3rem;
    }
    
    /* Ajuste para o texto da seção Agentes de IA para Negócios Locais */
    .ai-hero .hero-subtitle-ai,
    .ai-hero .hero-text-ai,
    .ai-hero .ai-highlight-hero {
        font-size: 20px; /* Alterado de 1.25rem para 20px */
    }
}

@media (max-width: 480px) {
    .hero-title-ai {
        font-size: 2rem;
    }
    
    .hero-subtitle-ai,
    .hero-text-ai,
    .ai-highlight-hero {
        font-size: 20px; /* Alterado de 1.125rem para 20px */
    }
    
    .ai-hero .hero-text {
        padding: 0 20px;
    }
    
    .ai-agents-details .section-title {
        font-size: 1.8rem;
    }
    
    .ai-agents-details .ai-features li {
        font-size: 1rem; /* Alterado de 0.9rem para 1rem */
        padding-left: 1.8rem;
        position: relative;
    }
    
    .ai-agents-details .ai-features li::before {
        content: "✅";
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.2rem;
        line-height: 1.2;
        display: block;
    }
}


