/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Cores Petlify */
    --petlify-turquoise: #0699A2;
    --petlify-orange: #FF914D;
    --petlify-dark-blue: #1A365D;
    --petlify-light-green: #E6F7F5;

    /* Cores de Destaque */
    --red-alert: #EF4444;
    --yellow-highlight: #FBBF24;
    --ai-glow: #8B5CF6;

    /* Cores Suporte */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-600: #4B5563;
    --gray-900: #111827;

    /* Gradientes */
    --gradient-hero: linear-gradient(135deg, var(--petlify-turquoise) 0%, var(--petlify-dark-blue) 100%);
    --gradient-ai: linear-gradient(135deg, var(--ai-glow) 0%, var(--petlify-turquoise) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

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

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.8;
}

/* Overlay com imagem do cachorro */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero-dog.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    mix-blend-mode: soft-light;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
    /* Vídeo no topo */
    width: 100%;
}

.chaos-img,
.chaos-video {
    width: 100%;
    max-width: 950px;
    /* Aumentado +10% */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 5px solid var(--petlify-orange);
}

.ai-badge-hero {
    background: var(--gradient-ai);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    animation: glow 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faro-logo-small {
    height: 30px;
    width: auto;
}

.ai-badge {
    background: var(--gradient-ai);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    animation: glow 2s ease-in-out infinite;
}

.ai-badge-small {
    font-size: 0.7rem;
    padding: 4px 10px;
}

.hero-content {
    text-align: center;
    max-width: 950px;
    /* Acompanhando largura do vídeo */
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.1;
}

.highlight-red {
    color: var(--red-alert);
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--petlify-light-green);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.emphasis {
    font-weight: 700;
    color: var(--yellow-highlight);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--petlify-orange);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(255, 145, 77, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 145, 77, 0.6);
}

.cta-disclaimer {
    color: var(--petlify-light-green);
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* ===== PAIN SECTION ===== */
.pain-section {
    padding: 100px 20px 40px;
    /* Reduzido padding bottom */
    background: var(--gray-50);
}

.pain-title {
    color: var(--gray-900);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.highlight-yellow {
    background: linear-gradient(135deg, var(--yellow-highlight) 0%, var(--petlify-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.pain-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.3rem;
    color: var(--gray-600);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pain-card {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    padding: 30px;
    border-radius: 16px;
    border: 3px solid #a71d2a;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.2);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pain-card p {
    font-size: 1.2rem;
    color: white;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pain-card strong {
    color: white;
    font-weight: 700;
}

.pain-conclusion {
    text-align: center;
    background: var(--petlify-dark-blue);
    padding: 50px;
    border-radius: 20px;
    color: var(--white);
}

.big-text {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
}

.stat-highlight {
    background: var(--red-alert);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: 900;
    display: inline-block;
    margin-top: 15px;
    /* Adicionado para afastar do texto */
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}


/* ===== WHATSAPP SECTION ===== */
.whatsapp-section {
    padding: 40px 20px 50px;
    /* Topo reduzido drasticamente de 100px para 40px */
    background: var(--white);
}

.whatsapp-title {
    text-align: center;
    margin-bottom: 60px;
}

.whatsapp-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.whatsapp-red-card {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(220, 53, 69, 0.4);
    border: 3px solid #a71d2a;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.whatsapp-red-card .lead-text,
.whatsapp-red-card .big-text {
    color: #000 !important;
}

.whatsapp-red-card strong {
    color: #000 !important;
    font-weight: 800;
}

.whatsapp-red-card .emphasis-orange {
    color: #000 !important;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid var(--petlify-orange);
}

.whatsapp-image {
    background: transparent;
}

.whatsapp-image img,
.whatsapp-video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: transparent;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.whatsapp-problem {
    padding: 30px;
    background: var(--gray-50);
    border-radius: 16px;
    border-left: 6px solid var(--red-alert);
}

.whatsapp-problem .lead-text {
    margin-bottom: 20px;
}

.emphasis-orange {
    color: var(--petlify-orange);
    margin-top: 20px;
    margin-bottom: 0;
}

.whatsapp-solution {
    padding: 40px;
    background: var(--petlify-light-green);
    border-radius: 20px;
    border: 2px solid var(--petlify-turquoise);
}

.solution-header {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.solution-image {
    order: -1;
    width: 100%;
    max-width: 100%;
}

.solution-text-header {
    flex: 1;
}

.solution-image {
    flex-shrink: 0;
}

.solution-image img,
.solution-video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--white);
}

.solution-subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--petlify-dark-blue);
}

.benefits-list-compact {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: start;
}

.benefit-item i {
    color: #10B981;
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item strong {
    display: block;
    color: var(--petlify-dark-blue);
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.benefit-item p {
    color: var(--gray-700);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.7;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    padding: 50px 20px 100px;
    /* Padding top reduzido para 50px para simetria */
    background: var(--white);
}

.solution-badge {
    text-align: center;
    display: inline-block;
    background: var(--gradient-ai);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 30px;
    display: block;
    width: fit-content;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.highlight-ai {
    background: var(--gradient-ai);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.highlight-white {
    color: white !important;
    text-decoration: underline;
    text-decoration-color: var(--petlify-orange);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.solution-intro {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.lead-text {
    font-size: 1.4rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.ai-demo {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.ai-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #0699A2 50%, #28a745 100%);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(6, 153, 162, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.ai-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 153, 162, 0.3);
}

.ai-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ai-card-header strong {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.ai-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.ai-card-body p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 700;
}

.faro-feature {
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.faro-banner-img,
.faro-banner-video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--petlify-turquoise);
}

.solution-cta {
    text-align: center;
    background: transparent;
    padding: 30px;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faro-highlight-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #0699A2 50%, #28a745 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 15px 50px rgba(6, 153, 162, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.faro-highlight-box::before {
    content: '✨';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    opacity: 0.3;
}

.faro-highlight-box::after {
    content: '✨';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.3;
}

.faro-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: white;
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.faro-text strong {
    color: #fff9e6;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--petlify-orange);
    text-decoration-thickness: 2px;
}

.solution-tagline {
    font-size: 1.3rem;
    color: var(--gray-900);
    font-weight: 600;
}

.faro-cta {
    text-align: center;
    background: var(--gradient-ai);
    padding: 40px;
    border-radius: 20px;
    color: var(--white);
}

.faro-tagline {
    font-size: 1.5rem;
    font-weight: 600;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 100px 20px;
    background: var(--gray-50);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--petlify-turquoise);
    box-shadow: 0 10px 30px rgba(6, 153, 162, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(6, 153, 162, 0.2);
}

.benefit-card:hover .benefit-pet-img {
    transform: scale(1.1) rotate(5deg);
    filter: grayscale(0%);
}

.benefit-pet-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--petlify-light-green);
    transition: all 0.4s ease;
    filter: grayscale(30%);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-card h4 {
    color: var(--petlify-dark-blue);
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Robot Card Feature - Splite Style */
.robot-card-feature {
    background: linear-gradient(135deg, #0a0a0f 0%, #000000 100%);
    border: 3px solid #1a1a2e;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    min-height: 350px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 50px;
    position: relative;
    overflow: visible;
    /* Allow arms to overflow */
    grid-column: 1 / -1;
}

.robot-spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center top,
            rgba(6, 153, 162, 0.15) 0%,
            rgba(6, 153, 162, 0.08) 30%,
            transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.robot-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.robot-card-feature .benefit-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.robot-card-feature h4 {
    background: linear-gradient(to bottom, #f5f5f5 0%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 15px;
}

.robot-card-feature p {
    color: #d1d5db;
    font-size: 1.1rem;
    line-height: 1.7;
}

.robot-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.robot-3d-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(6, 153, 162, 0.4));
    animation: floatRobot 6s ease-in-out infinite;
}

@keyframes floatRobot {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.robot-card-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(6, 153, 162, 0.4);
}

.robot-card-feature:hover .robot-3d-img {
    filter: drop-shadow(0 15px 50px rgba(6, 153, 162, 0.6));
}

/* Spline 3D Viewer */
.spline-robot {
    width: 120%;
    max-width: 450px;
    height: 400px;
    min-height: 400px;
    display: block;
    border: none;
    filter: drop-shadow(0 10px 40px rgba(6, 153, 162, 0.4));
    transform: scale(1.2);
}

.robot-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible !important;
}

/* Hide Spline Logo */
.spline-robot::part(logo) {
    opacity: 0 !important;
    display: none !important;
}

/* Alternative: Target logo via shadow DOM */
spline-viewer::part(logo) {
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Hide logo badge */
spline-viewer a[href*="spline.design"] {
    opacity: 0 !important;
    pointer-events: none !important;
}

.robot-card-feature:hover .spline-robot {
    filter: drop-shadow(0 15px 50px rgba(6, 153, 162, 0.6));
}

/* Analytics Card Feature - Same Dark Style as Robot */
.analytics-card-feature {
    background: linear-gradient(135deg, #0a0a0f 0%, #000000 100%);
    border: 3px solid #1a1a2e;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
}

.analytics-spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center top,
            rgba(6, 153, 162, 0.15) 0%,
            rgba(6, 153, 162, 0.08) 30%,
            transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.analytics-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 50px;
}

.analytics-card-feature .benefit-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(6, 153, 162, 0.5));
}

.analytics-card-feature h4 {
    background: linear-gradient(to bottom, #f5f5f5 0%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 15px;
}

.analytics-card-feature p {
    color: #d1d5db;
    font-size: 1.1rem;
    line-height: 1.7;
}

.analytics-visual {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
}

.analytics-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 10px 40px rgba(6, 153, 162, 0.3));
    transition: all 0.3s ease;
}

.analytics-card-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(6, 153, 162, 0.4);
}

.analytics-card-feature:hover .analytics-img {
    filter: drop-shadow(0 15px 50px rgba(6, 153, 162, 0.5));
    transform: scale(1.02);
}

/* Professionalization Card - Full Background Image */
.professionalization-card-feature {
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 50px 50px 20px 50px !important;
    overflow: hidden;
    grid-column: 1 / -1;
    /* Match other dark cards */
    background: linear-gradient(135deg, #0a0a0f 0%, #000000 100%);
    border: 3px solid #1a1a2e;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.professionalization-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: auto 100%;
    background-position: center 5%;
    background-repeat: no-repeat;
    z-index: 0;
    filter: brightness(1.2) contrast(1.1);
    /* Dá mais vida e luz à imagem */
}

.professionalization-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 40%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0) 100%);
    /* Overlay muito mais suave para não escurecer a modelo */
    z-index: 1;
}

.professionalization-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.professionalization-content .benefit-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 145, 77, 0.5));
}

.professionalization-content h4 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(to bottom, #f5f5f5 0%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.professionalization-content p {
    color: #d1d5db !important;
    font-size: 1.1rem;
    line-height: 1.7;
    text-shadow: none;
}

.professionalization-content strong {
    color: var(--petlify-turquoise);
    font-weight: 700;
}

.professionalization-card-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(6, 153, 162, 0.4);
}

.professionalization-card-feature:hover .professionalization-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0) 100%);
}

.analytics-card-feature:hover .analytics-spotlight {
    filter: drop-shadow(0 15px 50px rgba(6, 153, 162, 0.5));
    transform: scale(1.02);
}

/* ===== COMPARISON TABLE SECTION ===== */
.comparison-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--petlify-turquoise) 0%,
            var(--petlify-orange) 100%);
}

.comparison-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.comparison-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight-negative {
    color: #dc3545;
    position: relative;
    text-decoration: line-through;
    opacity: 0.8;
}

.comparison-subtitle {
    font-size: 1.3rem;
    color: #495057;
    margin: 0;
}

/* Table Wrapper */
.comparison-table-wrapper {
    max-width: 1100px;
    margin: 0 auto 60px;
    overflow-x: auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Table Styles */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1rem;
}

/* Table Header */
.comparison-table thead {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
    color: white;
}

.comparison-table th {
    padding: 30px 20px;
    text-align: center;
    font-weight: 600;
    border: none;
}

.feature-column {
    width: 25%;
    text-align: left !important;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
}

.competitor-column {
    width: 37.5%;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.petlify-column {
    width: 37.5%;
    background: linear-gradient(135deg, var(--petlify-turquoise) 0%, #058891 100%);
}

/* Column Headers */
.column-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.column-header .emoji {
    font-size: 2.5rem;
}

.column-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.column-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Table Body */
.comparison-table tbody tr {
    transition: background-color 0.3s ease;
}

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.comparison-table tbody tr:nth-child(odd) {
    background-color: #fafbfc;
}

.comparison-table td {
    padding: 25px 20px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.feature-name {
    font-weight: 600;
    color: #2d3748;
    font-size: 1.05rem;
}

/* Cell Styles */
.competitor-cell,
.petlify-cell {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
}

.competitor-cell {
    background-color: #fff5f5;
    border-left: 3px solid #dc3545;
}

.petlify-cell {
    background-color: #e6f7f5;
    border-left: 3px solid var(--petlify-turquoise);
    font-weight: 500;
}

/* Icons */
.icon-negative,
.icon-positive {
    font-size: 1.5rem;
    margin-right: 8px;
    display: inline-block;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.badge-negative {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.badge-positive {
    background: linear-gradient(135deg, var(--petlify-turquoise) 0%, #058891 100%);
    color: white;
}

.detail {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 5px;
    font-style: italic;
}

.detail.highlight {
    color: var(--petlify-turquoise);
    font-weight: 600;
    font-style: normal;
}

/* Price Row */
.price-row {
    background: linear-gradient(135deg, #fff9e6 0%, #fff4cc 100%) !important;
    border-top: 3px solid var(--petlify-orange);
    border-bottom: 3px solid var(--petlify-orange);
}

.price-cell {
    padding: 30px 20px !important;
}

.price-old {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #dc3545;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-new {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--petlify-turquoise);
    margin-bottom: 5px;
}

/* Comparison CTA */
.comparison-cta {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.punch-text {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
    padding: 50px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.punch-text::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.punch-main {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.6;
}

.punch-main .highlight {
    color: var(--petlify-turquoise);
    text-decoration: underline;
    text-decoration-color: var(--petlify-orange);
    text-decoration-thickness: 3px;
}

.punch-secondary {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #e9ecef;
}

.price-highlight {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 700;
    color: white;
    display: inline-block;
}

.punch-final {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 30px 0 0;
    color: var(--petlify-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.5;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--petlify-turquoise);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 30px;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin: 0;
}

/* FAQ Highlights */
.highlight-price {
    background: linear-gradient(135deg, var(--petlify-turquoise) 0%, #058891 100%);
    padding: 2px 8px;
    border-radius: 5px;
    color: white;
    font-weight: 700;
}

.highlight-ai {
    color: var(--petlify-orange);
    font-weight: 700;
    font-style: italic;
}

.highlight-freedom {
    color: #28a745;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.highlight-guarantee {
    color: var(--petlify-turquoise);
    background: #e6f7f5;
    padding: 2px 8px;
    border-radius: 5px;
}

/* ===== FINAL URGENCY CTA ===== */
.final-urgency {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.final-urgency::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center,
            rgba(255, 145, 77, 0.1) 0%,
            transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.urgency-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(220, 53, 69, 0.4);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.urgency-icon {
    font-size: 5rem;
    flex-shrink: 0;
    animation: shake 2s ease-in-out infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-10deg);
    }

    20%,
    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(10deg);
    }

    70% {
        transform: rotate(0deg);
    }
}

.urgency-content {
    flex: 1;
    color: white;
}

.urgency-warning {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.highlight-founder {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 5px;
    font-weight: 700;
    color: #ffffff;
}

.urgency-deadline {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-final-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--red-alert);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-final-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #f8f9fa;
    /* Branco levemente escuro */
    color: #c82333;
    /* Vermelho mais escuro */
}

.btn-final-cta i {
    font-size: 1.5rem;
}

/* ===== SIGNUP SECTION ===== */
.signup-section {
    padding: 100px 20px 20px;
    /* Padding bottom reduzido de 100px para 20px */
    background: var(--white);
}

.signup-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.solution-badge {
    display: block;
    background: var(--gradient-ai);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 30px;
    box-shadow: 0 5px 20px rgba(6, 153, 162, 0.3);
    text-align: center;
    width: fit-content;
}

.coming-soon-header {
    text-align: center;
    margin: 40px 0 50px;
}

.coming-soon-text {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1a1a2e 0%, #0699A2 50%, #28a745 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.coming-soon-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.urgency-badge {
    display: inline-block;
    background: var(--red-alert);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s ease infinite;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.signup-intro {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-top: 20px;
    line-height: 1.8;
}

.benefits-list {
    max-width: 700px;
    margin: 0 auto 50px;
    background: var(--petlify-light-green);
    padding: 30px 40px;
    border-radius: 16px;
    border-left: 6px solid var(--petlify-turquoise);
}

.benefits-list p {
    font-weight: 700;
    color: var(--petlify-dark-blue);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefits-list ul {
    list-style: none;
}

.benefits-list li {
    padding: 10px 0;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.benefits-list li i {
    color: var(--petlify-turquoise);
    font-size: 1.5rem;
}

.signup-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    scroll-margin-top: 100px;
}

.signup-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 35px;
    padding: 30px;
    background: var(--petlify-light-green);
    border-radius: 16px;
    border: 2px solid var(--petlify-turquoise);
}

.form-section-title {
    font-size: 1.3rem;
    color: var(--petlify-dark-blue);
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--petlify-turquoise);
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.form-intro {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--petlify-turquoise);
    box-shadow: 0 0 0 4px rgba(6, 153, 162, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: var(--petlify-orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(255, 145, 77, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 145, 77, 0.5);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 20px;
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 3px solid var(--petlify-turquoise);
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: bounce 1s ease;
}

.success-message h3 {
    color: var(--petlify-dark-blue);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.success-message>p {
    color: var(--gray-600);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.position {
    font-size: 2rem !important;
    font-weight: 900;
    color: var(--petlify-orange);
    margin: 30px 0 !important;
}

.next-steps {
    background: var(--petlify-light-green);
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
    text-align: left;
}

.next-steps p {
    font-weight: 700;
    color: var(--petlify-dark-blue);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.next-steps ol {
    list-style-position: inside;
    color: var(--gray-900);
}

.next-steps li {
    padding: 8px 0;
    font-size: 1.05rem;
}

.btn-back {
    padding: 15px 30px;
    background: var(--gray-100);
    color: var(--gray-900);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-back:hover {
    background: var(--gray-200);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--petlify-dark-blue);
    color: var(--white);
    padding: 40px 20px 20px;
}

/* Novo Layout Footer Centralizado */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-img {
    max-width: 220px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    background: white;
    padding: 15px 30px;
    border-radius: 12px;
}

.footer-tagline {
    color: var(--petlify-light-green);
    font-size: 1.1rem;
    margin: 5px 0;
}

/* Linha do Meio: Faro + Social */
.footer-middle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    /* Distância entre Logo Faro e Social */
    flex-wrap: wrap;
    width: 100%;
}

.footer-faro {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--petlify-light-green);
    margin: 0;
}

.faro-logo-tiny {
    height: 35px;
    width: auto;
    background: white;
    padding: 5px 12px;
    border-radius: 8px;
    vertical-align: middle;
    margin-right: 10px;
}

.footer-social-wrapper {
    display: flex;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Endereço Centralizado */
.footer-address {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-top: 10px;
    max-width: 900px;
}

.footer-social a:hover {
    background: var(--petlify-turquoise);
    transform: translateY(-3px);
}

.footer-copy {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
    text-align: center;
    margin-top: 20px;
    padding: 15px 20px;
    opacity: 0.7;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-disclaimer sup {
    font-size: 0.9rem;
    color: var(--petlify-orange);
}

.footer-copy p {
    color: var(--petlify-light-green);
    font-size: 0.9rem;
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 50px;
    line-height: 1.2;
}

/* ===== ANIMAÇÕES ===== */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    }

    50% {
        box-shadow: 0 0 50px rgba(139, 92, 246, 0.8);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .logo-img {
        max-width: 280px;
    }

    .ai-badge-hero {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .faro-logo-small {
        height: 24px;
    }

    /* Hero Responsive */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .chaos-img,
    .chaos-video {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-hero {
        font-size: 1.1rem;
        padding: 16px 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .pain-title {
        font-size: 1.8rem;
    }

    .big-text {
        font-size: 1.4rem;
    }

    .signup-form {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    /* WhatsApp Section Responsive */
    .whatsapp-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .whatsapp-image {
        order: -1;
    }

    /* Robot Card Responsive */
    .robot-card-feature {
        grid-template-columns: 1fr;
        padding: 30px;
        min-height: auto;
    }

    .robot-content {
        text-align: center;
    }

    .robot-visual {
        order: -1;
    }

    .robot-3d-img,
    .spline-robot {
        max-width: 300px;
    }

    .spline-robot {
        min-height: 350px;
        width: 130%;
        transform: scale(1.4);
        /* Gradient transparency only from legs down */
        -webkit-mask-image: linear-gradient(to bottom,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 1) 75%,
                /* Mantém braços e tronco 100% visíveis */
                rgba(0, 0, 0, 0.3) 90%,
                rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to bottom,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 1) 75%,
                rgba(0, 0, 0, 0.3) 90%,
                rgba(0, 0, 0, 0) 100%);
    }

    .robot-visual {
        overflow: visible !important;
    }

    /* Analytics Card Responsive */
    .analytics-card-feature {
        grid-template-columns: 1fr;
        padding: 0;
        min-height: auto;
    }

    .analytics-content {
        text-align: center;
        padding: 30px;
    }

    .analytics-visual {
        order: -1;
        padding: 0;
        width: 100%;
    }

    .analytics-img {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
    }

    /* Professionalization Card Responsive */
    .professionalization-card-feature {
        padding: 30px 30px 15px 30px !important;
        min-height: 650px;
    }

    .professionalization-content {
        text-align: center;
        max-width: 100%;
        padding: 0;
    }

    .professionalization-content h4 {
        line-height: 1.3;
        font-size: 1.8rem;
    }

    .professionalization-bg {
        background-size: auto 90%;
        background-position: center 5%;
    }

    .whatsapp-problem,
    .whatsapp-solution {
        padding: 25px;
    }

    .solution-subtitle {
        font-size: 1.4rem;
    }

    /* Solution Header Responsive */
    .solution-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-image {
        order: -1;
    }

    /* Form Responsive */
    .signup-form {
        padding: 30px 20px;
    }

    .form-section {
        padding: 20px;
        margin-bottom: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-section-title {
        font-size: 1.1rem;
    }

    /* Comparison Table Mobile */
    .comparison-section {
        padding: 60px 15px;
    }

    .comparison-header .section-title {
        font-size: 1.8rem;
    }

    .comparison-subtitle {
        font-size: 1.1rem;
    }

    .comparison-table-wrapper {
        border-radius: 15px;
        margin-bottom: 40px;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }

    .feature-column {
        font-size: 0.95rem;
    }

    .column-header {
        flex-direction: column;
        gap: 8px;
    }

    .column-header .emoji {
        font-size: 2rem;
    }

    .column-title {
        font-size: 1.1rem;
    }

    .column-subtitle {
        font-size: 0.75rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .icon-negative,
    .icon-positive {
        font-size: 1.2rem;
        display: block;
        margin: 0 auto 8px;
    }

    .price-old {
        font-size: 1.1rem;
    }

    .price-new {
        font-size: 1.3rem;
    }

    .punch-text {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .punch-text::before {
        font-size: 80px;
        top: 10px;
        left: 15px;
    }

    .punch-main {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .punch-secondary {
        font-size: 1rem;
    }

    .punch-final {
        font-size: 1.4rem;
        margin-top: 20px;
    }

    /* Mobile: Stack table */
    .comparison-table thead {
        display: none;
    }

    .comparison-table,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100%;
    }

    .comparison-table tr {
        margin-bottom: 30px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .feature-name {
        background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
        color: white;
        text-align: center;
        font-size: 1.1rem;
        padding: 20px !important;
        border: none;
    }

    .competitor-cell,
    .petlify-cell {
        text-align: left;
        padding: 20px !important;
        border-left: none;
        border-bottom: none;
    }

    .competitor-cell::before {
        content: '🐢 Sistemas Tradicionais';
        display: block;
        font-weight: 700;
        margin-bottom: 10px;
        color: #dc3545;
        font-size: 0.9rem;
    }

    .petlify-cell::before {
        content: '🚀 Petlify';
        display: block;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--petlify-turquoise);
        font-size: 0.9rem;
    }

    .price-row .feature-name {
        background: linear-gradient(135deg, var(--petlify-orange) 0%, #ff7a33 100%);
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 60px 15px;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px;
        gap: 15px;
    }

    .faq-icon {
        font-size: 1.5rem;
    }

    .faq-text {
        font-size: 1rem;
        line-height: 1.4;
    }

    .faq-toggle {
        font-size: 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Final Urgency Mobile */
    .final-urgency {
        padding: 60px 15px;
    }

    .urgency-box {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .urgency-icon {
        font-size: 3.5rem;
    }

    .urgency-warning {
        font-size: 1.1rem;
    }

    .urgency-deadline {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .btn-final-cta {
        font-size: 1rem;
        padding: 15px 30px;
        width: 100%;
        justify-content: center;
    }

    .btn-final-cta i {
        font-size: 1.3rem;
    }

    /* Mobile Video Fixes */
    .whatsapp-video,
    .solution-video,
    .faro-banner-video {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .whatsapp-image,
    .solution-image,
    .faro-feature {
        max-width: 100%;
        overflow: hidden;
    }

    .whatsapp-content {
        flex-direction: column;
    }

    .whatsapp-image {
        margin-bottom: 30px;
    }

    .solution-header {
        flex-direction: column;
    }

    .solution-image {
        order: -1;
        margin-bottom: 20px;
        max-width: 100%;
    }
}

/* --- Estilos da Seção de Chat --- */
.chat-section {
    background-color: #0f1115;
    padding: 50px 0;
    /* Simetria total: 50px topo e base */
    border-bottom: 1px solid #333;
}

.chat-header {
    text-align: center;
    margin-bottom: 60px;
}

.chat-header .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
    color: white;
}

.chat-header .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: #ccc;
}

.chat-intro-subtitle {
    text-align: center;
    margin: 20px auto 30px;
    color: #ff6b6b;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    max-width: 800px;
}

.chat-video-container {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.chat-video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid #00b894;
}

.chat-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.chat-card {
    background: #1a1d24;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.chat-card:hover {
    transform: translateY(-5px);
}

.problem-card {
    border-color: #4a2b2b;
}

.card-header-red {
    background: linear-gradient(135deg, #3d1a1a 0%, #2a1212 100%);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #4a2b2b;
}

.card-header-red h4 {
    color: #ff6b6b;
    margin: 0;
    font-size: 1.2rem;
}

.cost-badge {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.solution-card {
    border-color: #00b894;
    box-shadow: 0 0 20px rgba(0, 184, 148, 0.1);
}

.card-header-green {
    background: linear-gradient(135deg, #00b894 0%, #008f72 100%);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header-green h4 {
    color: #fff;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
}

.free-badge {
    background: #fff;
    color: #00b894;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.comparison-list {
    list-style: none;
    padding: 30px;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-list li i {
    font-size: 1.4rem;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.problem-card .comparison-list li i {
    color: #ff6b6b;
}

.solution-card .comparison-list li i {
    color: #00b894;
}

.chat-highlight {
    background: rgba(0, 184, 148, 0.1);
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 184, 148, 0.2);
}

.chat-highlight p {
    color: #00b894;
    font-weight: 600;
    margin: 0;
    font-style: italic;
}

.problem-highlight p {
    color: #ff6b6b;
}

.problem-highlight {
    background: rgba(255, 107, 107, 0.1);
    border-top: 1px solid rgba(255, 107, 107, 0.2);
}


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

/* Section CTA Buttons */
.section-cta-container {
    text-align: center;
    margin-top: 0;
    padding: 30px 0;
    /* Aumentado de 10px para 30px novamente */
}

.btn-cta-section {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--petlify-turquoise) !important;
    color: white;
    padding: 25px 50px;
    border-radius: 60px;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 40px rgba(6, 153, 162, 0.4);
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
    position: relative;
    overflow: hidden;
}

.btn-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-cta-section:hover::before {
    left: 100%;
}

.btn-cta-section:hover {
    background: #05858d;
    /* Turquesa mais escuro */
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(6, 153, 162, 0.5);
}

.btn-cta-section i {
    font-size: 1.6rem;
}

/* Variante alternativa com cores invertidas */
.btn-cta-section.variant-alt {
    background: linear-gradient(135deg, var(--petlify-orange) 0%, #ff6b35 100%);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    animation: pulse-glow-alt 2s infinite;
}

.btn-cta-section.variant-alt:hover {
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.5);
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 15px 40px rgba(6, 153, 162, 0.4);
    }

    50% {
        box-shadow: 0 15px 40px rgba(6, 153, 162, 0.6), 0 0 30px rgba(6, 153, 162, 0.3);
    }
}

@keyframes pulse-glow-alt {

    0%,
    100% {
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    }

    50% {
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 107, 53, 0.3);
    }
}