/* landing.css - Estilos Visuais para o Site de Apresentação OtimizzaPet */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
:root {
    --bg-dark: #0B0F19;
    --bg-card: #151C2C;
    --border-color: #2D3748;
    --border-glow: rgba(245, 158, 11, 0.4);
    --gold: #F59E0B;
    --gold-hover: #D97706;
    --gold-light: rgba(245, 158, 11, 0.12);
    --mint: #10B981;
    --mint-light: rgba(16, 185, 129, 0.15);
    --rose: #F43F5E;
    --text-muted: #94A3B8;
    --radius-lg: 16px;
    --radius-md: 10px;
    --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.25);
    --font-main: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-dark);
    color: #F8FAFC;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navbar */
.nav-landing {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    z-index: 1000;
}

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

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

.brand-box {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.brand-title {
    font-size: 20px;
    font-weight: 800;
    color: #FFF;
    letter-spacing: -0.5px;
}

.brand-title span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.nav-landing a.nav-link-item,
.nav-landing .nav-links a,
.nav-landing .nav-container a:not(.btn-gold-action):not(.btn-orange-action):not(.brand-box),
.nav-links a,
.nav-link-item {
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.95;
    transition: all 0.2s ease;
}

.nav-landing a.nav-link-item:hover,
.nav-landing .nav-links a:hover,
.nav-landing .nav-container a:not(.btn-gold-action):not(.btn-orange-action):not(.brand-box):hover,
.nav-links a:hover,
.nav-link-item:hover {
    color: #F59E0B !important;
    opacity: 1;
}

.nav-link-item.highlight-link {
    color: #F59E0B !important;
    font-weight: 700 !important;
    opacity: 1;
}

/* Buttons */
.btn-gold-action {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #0F172A;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
}

.btn-gold-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.btn-orange-action {
    background: linear-gradient(135deg, #EA580C, #F97316);
    color: #FFF;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(234, 88, 12, 0.4);
}

.btn-orange-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(234, 88, 12, 0.6);
}

.btn-orange-outline {
    border: 1px solid #F97316;
    color: #F97316;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    background: transparent;
    cursor: pointer;
}

.btn-orange-outline:hover {
    background: rgba(249, 115, 22, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* General Sections & Centered Titles */
section {
    padding: 80px 0;
    position: relative;
}

.sec-title,
h2.sec-title,
section h2.sec-title,
.container > h2 {
    text-align: center !important;
    font-size: 36px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 auto 16px auto !important;
    max-width: 900px;
    line-height: 1.3;
    display: block !important;
    width: 100%;
}

.sec-desc,
section p.sec-desc {
    text-align: center !important;
    font-size: 16px;
    color: var(--text-muted);
    max-width: 780px;
    margin: 0 auto 40px auto !important;
    line-height: 1.6;
    display: block !important;
}

/* Hero Section */
.hero-section {
    padding: 140px 0 80px 0;
    text-align: center;
    position: relative;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-light);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto 20px auto;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 36px auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Feature Switch Tabs */
.tabs-section {
    padding: 60px 0;
}

.tab-switcher-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.switch-tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.switch-tab-btn.active {
    border-color: var(--gold);
    color: #FFF;
    background: var(--gold-light);
    box-shadow: var(--shadow-glow);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Content Cards & Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.card-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
}

.card-box.glow-gold {
    border-color: var(--gold);
    box-shadow: var(--shadow-glow);
}

.card-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 14px;
}

.feature-check-list {
    list-style: none;
    margin-top: 20px;
}

.feature-check-list li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #E2E8F0;
}

.feature-check-list li i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
}

/* Mockup Certificate Card */
.mockup-cert-card {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    font-size: 12px;
}

.mockup-header {
    text-align: center;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.mockup-header h4 {
    color: var(--gold);
    font-size: 16px;
    font-weight: 800;
}

/* Embedded Simulator */
.sim-embed-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.sim-slider-row {
    margin-bottom: 18px;
}

.sim-slider-row label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.sim-slider-row input[type="range"] {
    width: 100%;
}

.sim-result-box {
    background: var(--gold-light);
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    margin-top: 20px;
}

.sim-result-box strong {
    font-size: 28px;
    color: var(--gold);
    display: block;
}

/* Pricing Grid & Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

.pricing-card.featured {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, var(--bg-card) 100%);
}

.pricing-tag {
    position: absolute;
    top: -14px;
    right: 24px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #0F172A;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    margin: 16px 0 6px 0;
}

.pricing-price span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-savings {
    background: rgba(16, 185, 129, 0.15);
    color: var(--mint);
    border: 1px solid var(--mint);
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    margin: 20px 0 30px 0;
}

.pricing-features li {
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E2E8F0;
}

.pricing-features li i {
    color: var(--gold);
}

/* AI Hub Grid & Cards */
.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.ai-tool-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: 0.3s;
}

.ai-tool-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.ai-tool-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gold-light);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.ai-tool-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 6px;
}

.ai-tool-card p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Footer */
.footer-landing {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 80px;
}

/* Responsividade & Leitura Confortável em Smartphones */
@media (max-width: 768px) {
    .nav-landing {
        padding: 10px 0;
    }
    .nav-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    .brand-title {
        font-size: 16px;
    }
    .brand-logo-img {
        width: 36px;
        height: 36px;
    }
    .hero-section {
        padding: 100px 0 36px 0;
    }
    .hero-badge-pill {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    .hero-title {
        font-size: 32px !important;
        line-height: 1.25;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }
    .hero-subtitle {
        font-size: 14px !important;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .hero-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 14px;
        padding: 14px 20px !important;
    }
    h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    h3 {
        font-size: 20px !important;
    }
    p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pricing-card {
        padding: 20px;
    }
    .pricing-price {
        font-size: 34px;
    }
    .ai-tools-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .ai-tool-card {
        padding: 16px;
    }
    .card-box {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px !important;
    }
    .brand-title small {
        display: none;
    }
}

/* FAQ Accordion Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-question,
.faq-question span,
.faq-item .faq-question {
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-icon {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 24px 20px 24px;
    opacity: 0.95;
    font-size: 14px;
    line-height: 1.6;
    color: #E2E8F0;
}

.faq-item.active .faq-answer {
    display: block !important;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Comparison Table Styles */
.comp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    font-size: 14px;
    margin-bottom: 16px;
}

.comp-table th, .comp-table td {
    padding: 14px 18px;
    text-align: left;
}

.comp-table th {
    background: #0B0F19;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.comp-table th.col-bad {
    color: var(--rose);
    border-bottom: 2px solid var(--rose);
}

.comp-table th.col-good {
    color: var(--mint);
    border-bottom: 2px solid var(--mint);
}

.comp-table td.col-bad {
    background: rgba(244, 63, 94, 0.06);
    color: #F8FAFC;
    border-bottom: 1px solid rgba(244, 63, 94, 0.15);
}

.comp-table td.col-good {
    background: rgba(16, 185, 129, 0.06);
    color: #F8FAFC;
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

@media (max-width: 768px) {
    .comp-table {
        font-size: 12px;
    }
    .comp-table th, .comp-table td {
        padding: 10px 12px;
    }
}

/* Modal Overlay & Box */
.landing-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 15, 25, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.landing-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.landing-modal-box {
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.landing-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 22px;
    cursor: pointer;
}

.landing-modal-close:hover {
    color: #FFF;
}

.btn-pulse {
    animation: pulseGold 2.5s infinite;
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* Steps Process Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    position: relative;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    position: relative;
}

.step-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-light);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.step-icon-box.mint {
    background: var(--mint-light);
    border-color: var(--mint);
    color: var(--mint);
}

/* Groomer Profile Cards */
.groomer-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.groomer-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.groomer-avatar-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    margin-bottom: 12px;
}

.groomer-avatar-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold-light);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 26px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    font-size: 40px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 8px;
}

/* Menu Hamburguer Responsivo para Cabeçalho das Landing Pages */
.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #FFF;
    font-size: 20px;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-container {
        position: relative;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none !important;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        background: rgba(15, 23, 42, 0.98);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 16px;
        margin-top: 12px;
        gap: 12px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.9);
    }

    .nav-links.active {
        display: flex !important;
        animation: landingNavFade 0.25s ease-out forwards;
    }

    .nav-links a.nav-link-item,
    .nav-links .nav-link-item,
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links li:last-child,
    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links .btn-gold-action,
    .nav-links .btn-orange-action {
        width: 100%;
        justify-content: center;
        margin-top: 6px;
    }
}

@keyframes landingNavFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
